summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-15 22:09:13 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-15 22:09:13 +0200
commit47da9c1e9ac25b3248a808f4519e2c64ecb8e2b4 (patch)
tree8a237a5a18e7b91a2c83473bd6b0a9db381daab0 /GNUmakefile
parentc2efa347a8e5f1d83427c34defa953e594a2bb12 (diff)
Add class MLKInteger.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 4b614b0..e9cbdd4 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -20,15 +20,18 @@ include $(GNUSTEP_MAKEFILES)/common.make
TOOL_NAME = etoilisp
etoilisp_OBJC_FILES = MLKCharacter.m MLKCons.m MLKDynamicContext.m \
MLKEndOfFileError.m MLKEnvironment.m MLKError.m \
- MLKLinkedList.m MLKLispValue.m MLKPackage.m \
- MLKReader.m MLKReadtable.m MLKReaderError.m \
- MLKStream.m MLKSymbol.m MLKThrowException.m \
+ MLKInteger.m MLKLinkedList.m MLKLispValue.m \
+ MLKPackage.m MLKReader.m MLKReadtable.m \
+ MLKReaderError.m MLKStream.m MLKSymbol.m \
+ MLKThrowException.m \
MLKUndefinedVariableException.m
BUNDLE_NAME = Test
Test_OBJC_FILES = $(etoilisp_OBJC_FILES) MLKLowLevelTests.m
Test_OBJC_LIBS = -lUnitKit
+ADDITIONAL_LDFLAGS = -lgmp
+
-include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/bundle.make
include $(GNUSTEP_MAKEFILES)/tool.make