Update of /cvsroot/hoc/hoc/HOC
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10800/HOC
Modified Files:
Makefile.in
Log Message:
Enable -O -fasm;
... and clean up the makefiles, remove stray -fPIC flags and vestiges of
dynamic linking experiments (this should be re-added using an optional
configure flag in the future).
Index: Makefile.in
===================================================================
RCS file: /cvsroot/hoc/hoc/HOC/Makefile.in,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- Makefile.in 30 Jul 2005 08:24:43 -0000 1.15
+++ Makefile.in 3 Aug 2005 01:48:51 -0000 1.16
@@ -11,7 +11,7 @@
Makefile.in \
$(NULL)
-all: libHOC.a libHOC_dyn.dylib HOC.o ../inplace.conf
+all: libHOC.a HOC.o ../inplace.conf
../inplace.conf: HOC.conf-inplace
[ -f "$@" ] || echo '[]' > $@
@@ -54,7 +54,6 @@
mkdir -p build/objects
mkdir -p build/imports
$(GHC) --make HOC/Arguments.hs \
- -fPIC -dynamic \
-odir build/objects -hidir build/imports \
-fglasgow-exts -fth \
../HOC_cbits/HOC_cbits.o \
@@ -65,7 +64,7 @@
$(FOUNDATION_LIBS) \
$(DEFINES)
$(GHC) --make HOC.hs \
- -fPIC -dynamic \
+ -O -fasm \
-odir build/objects -hidir build/imports \
-fglasgow-exts -fth \
../HOC_cbits/HOC_cbits.o \
@@ -88,6 +87,5 @@
install-files: all HOC.conf
mkdir -p "$(destdir)"/$(GHC_LIB_PATH)/HOC
- cp -R libHOC.a libHOC_dyn.dylib HOC.o build/imports \
+ cp -R libHOC.a HOC.o build/imports \
"$(destdir)"/$(GHC_LIB_PATH)/HOC/
-
|