From e251e4a04fbc23c21b168c591f519743c54f5c98 Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Mon, 5 Nov 2012 17:37:48 -0800 Subject: [PATCH] Made Makefile marginally less sucky --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 0f135ec..f4d4ad6 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,16 @@ all: shpell .tests - true + : Done shpell: regardless - ghc --make shpell #GHC handles the dependencies + : Conditionally compiling shpell + ghc --make shpell .tests: *.hs */*.hs + : Running unit tests ./test/runQuack && touch .tests clean: rm -f .tests shpell *.hi *.o Shpell/*.hi Shpell/*.o regardless: - : - +