diff options
author | Matthias Andreas Benkard <matthias@benkard.de> | 2008-06-11 17:10:55 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <matthias@benkard.de> | 2008-06-11 17:10:55 +0200 |
commit | c0539c94ac6861f12f0bae4dd604cedd057c45d5 (patch) | |
tree | 026775c96f596ed56e0dd8e5383f64067ec884b1 /GNUmakefile | |
parent | d355e8a5ef359b76ddaec26f33a8c9345d3a2e79 (diff) |
Add a test suite.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index 68e893b..53176e7 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -22,6 +22,14 @@ etoilisp_OBJC_FILES = MLKCons.m MLKEnvironment.m MLKLinkedList.m \ MLKLispValue.m MLKSymbol.m \ MLKUndefinedVariableException.m +BUNDLE_NAME = Test +Test_OBJC_FILES = $(etoilisp_OBJC_FILES) MLKLowLevelTests.m +Test_OBJC_LIBS = -lUnitKit + -include GNUmakefile.preamble +include $(GNUSTEP_MAKEFILES)/bundle.make include $(GNUSTEP_MAKEFILES)/tool.make -include GNUmakefile.postamble + +test: Test + ukrun Test.bundle |