Initial implementation of bindist comparison tool
[ghc-hetmet.git] / distrib / compare / Makefile
diff --git a/distrib/compare/Makefile b/distrib/compare/Makefile
new file mode 100644 (file)
index 0000000..3099bc9
--- /dev/null
@@ -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
+