You know the game, fix URL, EOL.
[vomak.git] / configure
blob7fab7ea0d9e8661b6f6d8018f013a014258a1a46
1 #!/bin/sh
3 WAF="./waf"
6 $WAF configure $@ || exit 1
8 # Makefile
9 cat > Makefile << EOF
11 .PHONY: build
13 all: build
15 build:
16 @$WAF build
18 install:
19 @$WAF install
21 uninstall:
22 @$WAF uninstall
24 clean:
25 @$WAF clean
27 distclean:
28 @$WAF distclean
29 @-rm -f Makefile
31 EOF
33 # src/Makefile
34 cat > src/Makefile << EOF
36 .PHONY: build
38 all: build
40 build:
41 cd .. && $WAF build --targets=vomak
43 EOF