diff options
author | Ian Lynagh <igloo@earth.li> | 2011-03-15 16:29:12 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-03-15 16:29:12 +0000 |
commit | 29a05730930cd2c5986ebb22d550e893d9fa20cc (patch) | |
tree | 430da3341106f64acc654abf5db6c874cabdc939 /distrib/compare/Makefile | |
parent | 6c073daacc2c44e218411e874c2eec9d53851d72 (diff) | |
download | haskell-29a05730930cd2c5986ebb22d550e893d9fa20cc.tar.gz |
Initial implementation of bindist comparison tool
Diffstat (limited to 'distrib/compare/Makefile')
-rw-r--r-- | distrib/compare/Makefile | 12 |
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 + |