]> gitweb @ CieloNegro.org - blackboard-dns.git/blob - data/GNUmakefile
DB thingy
[blackboard-dns.git] / data / GNUmakefile
1 GHC ?= ghc
2
3 all: db-modules
4
5 db-modules: GenDBModules
6         ./GenDBModules
7
8 GenDBModules: GenDBModules.hs ../DDNS/DBInfo.hs
9         $(GHC) --make GenDBModules -i..
10
11 clean:
12         rm -f GenDBModules *.hi *.o
13         rm -f ../DDNS/DB.hs
14         rm -rf ../DDNS/DB
15         rm -f ../DDNS/*.hi ../DDNS/*.o
16
17 .PHONY: all db-modules clean