2011-02-07 20:41:58 +00:00
|
|
|
# __GENERATED__ makefile marker
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
-include ../GNUmakefile.super
|
|
|
|
|
2011-03-01 12:39:09 +00:00
|
|
|
@TESTOPTS@
|
|
|
|
|
2011-02-22 18:48:39 +00:00
|
|
|
TEST_TOOL_NAME = @TESTNAMES@
|
2011-02-07 20:41:58 +00:00
|
|
|
|
2011-02-22 18:48:39 +00:00
|
|
|
ADDITIONAL_OBJCFLAGS += @TESTFLAGS@ -Wall
|
2011-02-07 20:41:58 +00:00
|
|
|
|
|
|
|
ifeq ($(gcov),yes)
|
|
|
|
ADDITIONAL_OBJCFLAGS += -ftest-coverage -fprofile-arcs
|
|
|
|
ADDITIONAL_LDFLAGS += -ftest-coverage -fprofile-arcs
|
|
|
|
ADDITIONAL_TOOL_LIBS+=-lgcov
|
|
|
|
endif
|
|
|
|
|
2011-02-22 18:48:39 +00:00
|
|
|
@TESTRULES@
|
2011-02-07 20:41:58 +00:00
|
|
|
|
|
|
|
-include GNUmakefile.preamble
|
|
|
|
include $(GNUSTEP_MAKEFILES)/test-tool.make
|
|
|
|
-include GNUmakefile.postamble
|
|
|
|
|
2011-02-28 12:30:28 +00:00
|
|
|
after-clean::
|
|
|
|
rm -f core tests.log tests.sum oldtests.log oldtests.sum
|
|
|
|
|