# Let's keep it simple for now. all: ghc -fglasgow-exts --make -c *.hs all-optimized: ghc -fglasgow-exts --make -O -hisuf O.hi -osuf O.o -c *.hs clean: rm -f *.hi *.o