summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-08-06 20:01:55 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-08-06 20:01:55 +0200
commit30c1591ec870d8ebb7f2d0562c54aa88cd149693 (patch)
tree17b80085eed05606af0ad03911c2b595e6588ce0 /GNUmakefile
parentc2281495f8d2d34cafdc05f4a2fcfe752da4ec6d (diff)
Add class MLKArray.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 7cc4350..0cb2e7f 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -25,6 +25,9 @@ TOOL_NAME = etshell toilet
FRAMEWORK_NAME = ToiletKit
BUNDLE_NAME = Test
+ADDITIONAL_OBJCFLAGS += $(CUSTOM_OBJCFLAGS)
+ADDITIONAL_LDFLAGS += $(CUSTOM_LDFLAGS)
+
ifeq ($(DEBUG),YES)
ADDITIONAL_OBJCFLAGS += -ggdb3
endif
@@ -40,13 +43,14 @@ else
ifeq ($(HAVE_FFI_FFI_H),YES)
ADDITIONAL_OBJCFLAGS += -DHAVE_FFI_FFI_H
else
- $(error "Could not find ffi.h. Please install libffi and pass appropriate ADDITIONAL_OBJCFLAGS and ADDITIONAL_LDFLAGS to make.")
+ $(error "Could not find ffi.h. Please install libffi and pass appropriate CUSTOM_OBJCFLAGS and CUSTOM_LDFLAGS to make.")
endif
endif
-ToiletKit_OBJC_FILES = functions.m globals.m MLKBackquoteReader.m \
- MLKBinding.m MLKCharacter.m MLKCommaReader.m \
- MLKCompiledProcedure.m MLKCons.m MLKDoubleFloat.m \
+ToiletKit_OBJC_FILES = functions.m globals.m MLKArray.m \
+ MLKBackquoteReader.m MLKBinding.m MLKCharacter.m \
+ MLKCommaReader.m MLKCompiledProcedure.m MLKCons.m \
+ MLKDoubleFloat.m \
MLKDispatchingMacroCharacterReader.m \
MLKDynamicContext.m MLKEnvironment.m MLKFloat.m \
MLKForeignProcedure.m MLKInteger.m \