Replacement of some gint32 fields with enums may cause "warning: passing argument xxx from incompatible pointer type" or something similar at compile time but it's safe from the ABI prospective because those enums have the same size as gint32 (and that's checked at compiled time). It may, however, cause compilation errors in the projects compiled with -Werror
15 lines
238 B
Makefile
15 lines
238 B
Makefile
# -*- Mode: makefile-gmake -*-
|
|
|
|
.PHONY: clean all
|
|
|
|
all:
|
|
%:
|
|
@$(MAKE) -C unit_client $*
|
|
@$(MAKE) -C unit_instance $*
|
|
@$(MAKE) -C unit_registry $*
|
|
@$(MAKE) -C unit_util $*
|
|
|
|
clean: unitclean
|
|
rm -f coverage/*.gcov
|
|
rm -fr coverage/report
|