diff options
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) + |