diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2016-10-25 20:57:49 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2016-10-25 20:57:49 (GMT) |
commit | 339420dd5dd874c41f6bab5808291fb4036dd022 (patch) | |
tree | 87487fbd8214ac48fb4215569bf0cd947a222d61 /filter/Imakefile | |
download | blt-339420dd5dd874c41f6bab5808291fb4036dd022.zip blt-339420dd5dd874c41f6bab5808291fb4036dd022.tar.gz blt-339420dd5dd874c41f6bab5808291fb4036dd022.tar.bz2 |
Squashed 'funtools/' content from commit 8b760b8
git-subtree-dir: funtools
git-subtree-split: 8b760b80d2c8f7ef3a157370e212b18a6510be46
Diffstat (limited to 'filter/Imakefile')
-rw-r--r-- | filter/Imakefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/filter/Imakefile b/filter/Imakefile new file mode 100644 index 0000000..a1aa8c7 --- /dev/null +++ b/filter/Imakefile @@ -0,0 +1,18 @@ +XCOMM ######################################################################### +XCOMM +XCOMM Fake Imakefile for xpa for use in saord +XCOMM Its only necessary to have the Makefiles target +XCOMM +XCOMM ######################################################################### + +Makefiles:: + @(x=""; \ + for i in $(CC); do \ + if [ "$$i" = "gcc" ] ; then \ + echo "X uses gcc ... and so shall we"; \ + x="--enable-gcc"; \ + fi; \ + done; \ + rm -f config.cache; \ + ./configure --enable-saord --prefix=$(TOP) --exec-prefix=$(TOP) --with-alt-libdir=$(TOP)/lib $$x) + |