summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2010-03-09 02:00:21 +0100
committerMatthias Schiffer <matthias@gamezock.de>2010-03-09 02:00:21 +0100
commitd3e50ab004d80943e456aee8e425f69ca3d01d5d (patch)
tree11db3970172b124d0e8373c662480cd246891a0c /Makefile
parente03de6bfe6b90f8862e405c3797503ccd2722e1b (diff)
downloadhtanks-d3e50ab004d80943e456aee8e425f69ca3d01d5d.tar
htanks-d3e50ab004d80943e456aee8e425f69ca3d01d5d.zip
Migrated from Make to Cabal
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 0 insertions, 13 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 8cb0488..0000000
--- a/Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-HSCFILES = Bindings/GLX.hsc Bindings/GLPng.hsc
-HSFILES = $(HSCFILES:%.hsc=%.hs) GLDriver.hs GLX.hs Texture.hs Player.hs DefaultPlayer.hs CPUPlayer.hs Level.hs Game.hs Render.hs HTanks.hs
-
-all: HTanks
-
-HTanks : $(HSFILES)
- ghc -threaded --make HTanks -lGL -lglpng
-
-%.hs : %.hsc
- hsc2hs $<
-
-clean :
- rm -f HTanks $(HSFILES:%.hs=%.o) $(HSFILES:%.hs=%.hi) $(HSCFILES:%.hsc=%.hs)