|
From: Andre P. <at...@us...> - 2004-05-12 05:44:22
|
Update of /cvsroot/hoc/hoc/Samples/UniqSort In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4305/Samples/UniqSort Modified Files: UniqSort.hs 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 --- uniqsort: UniqSort.hs ghc -o $@ --make $< clean: -rm uniqsort *.o *.hi --- Makefile DELETED --- Index: UniqSort.hs =================================================================== RCS file: /cvsroot/hoc/hoc/Samples/UniqSort/UniqSort.hs,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- UniqSort.hs 10 May 2004 07:49:30 -0000 1.2 +++ UniqSort.hs 12 May 2004 05:44:12 -0000 1.3 @@ -1,13 +1,8 @@ module Main where -import List (genericLength) -import System - import Foundation import Foundation.NSProcessInfo (arguments) import HOC -import HOC.Base (newAutoreleasePool, releaseObject) -import HOC.ID (isNil) -- int main (int argc, const char * argv[]) { main = do |