repo.or.cz
/
vomak.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add !moo, it's just too important too miss it.
[vomak.git]
/
configure
blob
7fab7ea0d9e8661b6f6d8018f013a014258a1a46
1
#!/bin/sh
2
3
WAF
=
"./waf"
4
5
6
$WAF
configure $@ ||
exit
1
7
8
# Makefile
9
cat
>
Makefile
<< EOF
10
11
.PHONY: build
12
13
all: build
14
15
build:
16
@
$WAF
build
17
18
install:
19
@
$WAF
install
20
21
uninstall:
22
@
$WAF
uninstall
23
24
clean:
25
@
$WAF
clean
26
27
distclean:
28
@
$WAF
distclean
29
@-rm -f Makefile
30
31
EOF
32
33
# src/Makefile
34
cat
>
src
/
Makefile
<< EOF
35
36
.PHONY: build
37
38
all: build
39
40
build:
41
cd .. &&
$WAF
build --targets=vomak
42
43
EOF
44
45