diff options
author | Matthias Benkard <mulk@minimulk.mst-plus> | 2008-08-29 22:05:58 +0200 |
---|---|---|
committer | Matthias Benkard <mulk@minimulk.mst-plus> | 2008-08-29 22:05:58 +0200 |
commit | b09e248f3d0a6d1cc1ad43302a3d45e0582f32b8 (patch) | |
tree | ec6f45230613a4c4fe9aab6e8a0b5c9fc05a4497 | |
parent | f3a4b459d3b0d0036f96086beeafd7775799bfc9 (diff) |
GNUmakefile: Copy the whole Sacla directory as a resource into ToiletKit.
See the included comment for a rant and assorted details.
-rw-r--r-- | GNUmakefile | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/GNUmakefile b/GNUmakefile index b6f9a00..aee6ed4 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -83,7 +83,16 @@ ToiletKit_OBJC_FILES = functions.m globals.m MLKArray.m \ NSString-MLKPrinting.m ToiletKit_OBJCFLAGS = -Wall ToiletKit_LDFLAGS = -lgmp -lffi -ldl -#FIXME: + +# We copy the whole Sacla directory, because copying individual files causes them to +# lose their relative path. Does anyone else think this is retarded? +# +# At least copying whole directories is documented to work. (“Documented” as in “the comments +# in GNUstep-Make's source code say so,” as those seem to be the only reliable source of +# information about GNUstep-Make out there. BTW, does anyone else think this is retarded?) +# +# Anyway, look at ${GNUSTEP_MAKEFILES}/Instance/Shared/bundle.make for details. +# ToiletKit_RESOURCE_FILES = array.lisp control-flow.lisp defun-0.lisp \ defun-1.lisp destructuring-bind.lisp evaluation.lisp \ ffi.lisp init.lisp list-functions-2.lisp \ @@ -91,15 +100,7 @@ ToiletKit_RESOURCE_FILES = array.lisp control-flow.lisp defun-0.lisp \ package.lisp reader.lisp sharpsign.lisp string.lisp \ types.lisp util.lisp \ \ - Sacla/array.lisp Sacla/character.lisp Sacla/clos.lisp \ - Sacla/condition.lisp Sacla/cons.lisp Sacla/core.lisp \ - Sacla/data-and-control.lisp Sacla/do.lisp \ - Sacla/eval.lisp Sacla/hash-table.lisp Sacla/init.lisp \ - Sacla/loop.lisp Sacla/package.lisp Sacla/printer.lisp \ - Sacla/reader.lisp Sacla/sequence.lisp \ - Sacla/share-2.lisp Sacla/share.lisp Sacla/stand-in.lisp \ - Sacla/stream.lisp Sacla/string.lisp Sacla/symbol.lisp \ - Sacla/testbed.lisp + Sacla ifeq ($(USE_LLVM),YES) LLVM_CONFIG = llvm-config |