darling-libobjc2/GCKit/GNUmakefile
rfm cd1d274928 Remove usage of -march=native since it doesn't work with most compilers, and
also causes problems with builds on server farms where the build machine is
not the machine the code will run on.
2010-09-08 09:12:13 +00:00

29 lines
478 B
Makefile

include $(GNUSTEP_MAKEFILES)/common.make
#LIBRARY_NAME = GCKit
TOOL_NAME = GCKit
GCKit_VERSION = 1
GCKit_OBJC_FILES = \
cycle.m\
inline.m\
malloc.m\
thread.m\
trace.m\
test.m\
visit.m\
workqueue.m
GCKit_HEADER_FILES_INSTALL_DIR = GCKit
GCKit_HEADER_FILES = \
GCKit.h
GCKit_LIBRARIES_DEPEND_UPON += -lpthread
GCKit_OBJCFLAGS += -Werror -std=c99 -fno-inline
include $(GNUSTEP_MAKEFILES)/library.make
include $(GNUSTEP_MAKEFILES)/tool.make