Update of /cvsroot/hoc/hoc/InterfaceGenerator
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4305/InterfaceGenerator
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:
mkdir -p build
ghc --make Main.hs \
-odir build -hidir build \
-package-conf ../HOC/HOC-$(PLATFORM).conf-inplace \
-o ifgen
clean:
rm -rf ifgen build
install: all
echo "Interface Generator will be used in-place."
--- Makefile DELETED ---
|