mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-04 05:40:54 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@37675 72102866-910b-0410-8b05-ffd578937521
27 lines
594 B
Makefile
27 lines
594 B
Makefile
# __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 core.* *.core tests.log tests.sum oldtests.log oldtests.sum
|
|
|