summaryrefslogtreecommitdiff
path: root/distrib/compare/Makefile
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2011-03-15 16:29:12 +0000
committerIan Lynagh <igloo@earth.li>2011-03-15 16:29:12 +0000
commit29a05730930cd2c5986ebb22d550e893d9fa20cc (patch)
tree430da3341106f64acc654abf5db6c874cabdc939 /distrib/compare/Makefile
parent6c073daacc2c44e218411e874c2eec9d53851d72 (diff)
downloadhaskell-29a05730930cd2c5986ebb22d550e893d9fa20cc.tar.gz
Initial implementation of bindist comparison tool
Diffstat (limited to 'distrib/compare/Makefile')
-rw-r--r--distrib/compare/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/distrib/compare/Makefile b/distrib/compare/Makefile
new file mode 100644
index 0000000000..3099bc9cc5
--- /dev/null
+++ b/distrib/compare/Makefile
@@ -0,0 +1,12 @@
+
+GHC = ghc
+
+compare: *.hs
+ "$(GHC)" --make -Wall -Werror $@
+
+.PHONY: clean
+clean:
+ rm -f *.o
+ rm -f *.hi
+ rm -f compare compare.exe
+