2013-07-10 14:04:29 +00:00
|
|
|
# __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::
|
2014-02-03 13:30:46 +00:00
|
|
|
rm -f core core.* *.core tests.log tests.sum oldtests.log oldtests.sum
|
2013-07-10 14:04:29 +00:00
|
|
|
|