diff options
-rw-r--r-- | makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,6 +1,7 @@ OUTPUTDIR = ./bin +EXECUTABLES = ${OUTPUTDIR}/test all: test @@ -9,6 +10,9 @@ clean: find . -name '*.hi' -delete find . -name '*.o' -delete +distclean: + rm ${EXECUTABLES} + test: ghc --make ./test.hs -o ${OUTPUTDIR}/test |