|
From: Andre P. <at...@us...> - 2004-05-12 05:44:21
|
Update of /cvsroot/hoc/hoc/Samples/Editor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4305/Samples/Editor 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: Editor.app Editor.app: Editor hocwrap Editor Editor: *.hs mkdir -p build ghc --make -fglasgow-exts Main.hs -odir build -hidir build -O -o Editor interpret: mkdir -p build hocwrap -i -- -fglasgow-exts Main.hs -odir build -hidir build zerolink: nolink interpret nolink: mkdir -p build ghc --make -fglasgow-exts Main.hs -odir build -hidir build -O -pgml true clean: rm -rf build Editor Editor.app 'Interpreted Haskell Application.app/' --- Makefile DELETED --- |