diff options
Diffstat (limited to 'challenge-274/atschneid/haskell/makefile')
| -rw-r--r-- | challenge-274/atschneid/haskell/makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/challenge-274/atschneid/haskell/makefile b/challenge-274/atschneid/haskell/makefile new file mode 100644 index 0000000000..3ce84cadc4 --- /dev/null +++ b/challenge-274/atschneid/haskell/makefile @@ -0,0 +1,10 @@ +HSFLAGS := -g -O3 + +all: ch-1 ch-2 + +ch-1: ch-1.hs + ghc $(HSFLAGS) ch-1.hs -o ch-1 + +ch-2: ch-2.hs + ghc $(HSFLAGS) ch-2.hs -o ch-2 + |
