Update of /cvsroot/hoc/hoc/Tools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4305/Tools
Added Files:
Makefile.in
Removed Files:
Makefile
Log Message:
Changed build system to use GNU autoconf (./configure && make && make install)
rather than home-grown build system
Removed import HOC.Marshal from HOC/HOC.hs, since HOC.Marshal requires Foundation.NSString and thus generates a circular dependency
Small documentation updates
--- NEW FILE: Makefile.in ---
include ../config.mk
all: hocwrap
hocwrap: *.hs
mkdir -p build/hocwrap
ghc --make HOCWrap.hs \
-fglasgow-exts \
-o hocwrap \
-odir build/hocwrap -hidir build/hocwrap \
-package-conf ../HOC/HOC-$(PLATFORM).conf-inplace \
-package-conf ../Foundation/Foundation.conf-inplace
clean:
rm -rf hocwrap build
install: all
install -s hocwrap /usr/local/bin/
--- Makefile DELETED ---
|