Update of /cvsroot/hoc/hoc/InterfaceGenerator
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16779/InterfaceGenerator
Modified Files:
Makefile.in
Log Message:
Build static and dynamic versions of HOC/Foundation/AppKit packages (dynamic
versions are largely untested at the moment, and may be broken)
Added 'make check' target
Added Makefile for Tests/ directory
ifgen now compiles with -dynamic, hooray
Build static and dynamic versions of Tests/TestFoundation (untested, but at
least the static version should work OK)
Warning: make install will definitely be broken for the dynamic versions of the
libraries, since I haven't updated the Makefiles to run install_name_tool to
change the id of the .dylib file yet
Index: Makefile.in
===================================================================
RCS file: /cvsroot/hoc/hoc/InterfaceGenerator/Makefile.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Makefile.in 31 Mar 2005 16:47:02 -0000 1.6
+++ Makefile.in 1 Apr 2005 03:00:06 -0000 1.7
@@ -10,7 +10,7 @@
ifgen:
mkdir -p build
- $(GHC) --make Main.hs \
+ $(GHC) -dynamic --make Main.hs \
-odir build -hidir build \
-package-conf ../inplace.conf \
-o $@
|