mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-04 13:50:55 +00:00
28 lines
580 B
Text
28 lines
580 B
Text
|
# __GENERATED__ makefile marker
|
||
|
#
|
||
|
|
||
|
include $(GNUSTEP_MAKEFILES)/common.make
|
||
|
-include ../GNUmakefile.super
|
||
|
|
||
|
GNUSTEP_OBJ_DIR=./obj
|
||
|
|
||
|
TEST_TOOL_NAME = basic
|
||
|
|
||
|
ifeq ($(gcov),yes)
|
||
|
ADDITIONAL_OBJCFLAGS += -ftest-coverage -fprofile-arcs
|
||
|
ADDITIONAL_OBJCCFLAGS += -ftest-coverage -fprofile-arcs
|
||
|
ADDITIONAL_LDFLAGS += -ftest-coverage -fprofile-arcs
|
||
|
ADDITIONAL_TOOL_LIBS+=-lgcov
|
||
|
endif
|
||
|
|
||
|
|
||
|
basic_OBJC_FILES=basic.m
|
||
|
|
||
|
-include GNUmakefile.preamble
|
||
|
include $(GNUSTEP_MAKEFILES)/test-tool.make
|
||
|
-include GNUmakefile.postamble
|
||
|
|
||
|
after-clean::
|
||
|
rm -f core tests.log tests.sum oldtests.log oldtests.sum
|
||
|
|