This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
htanks/Makefile

13 lines
342 B
Makefile
Raw Normal View History

HSCFILES = Bindings/GLX.hsc Bindings/GLPng.hsc
HSFILES = $(HSCFILES:%.hsc=%.hs) GLDriver.hs GLX.hs Texture.hs Tank.hs Level.hs Game.hs Render.hs HTanks.hs
2010-02-25 04:49:30 +01:00
all: HTanks
HTanks : $(HSFILES)
ghc -threaded --make HTanks -lGL -lglpng
2010-02-25 04:49:30 +01:00
%.hs : %.hsc
hsc2hs $<
clean :
rm -f HTanks $(HSFILES:%.hs=%.o) $(HSFILES:%.hs=%.hi) $(HSCFILES:%.hsc=%.hs)