projects
/
oh-my-god.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
preface image
[oh-my-god.git]
/
build.sh
1
#!/bin/sh
2
set -e
3
4
if [ ! -e "configure" ]; then
5
./autogen.sh
6
fi
7
8
mkdir -p _build
9
cd _build
10
11
if [ ! -e "Makefile" ]; then
12
../configure \
13
--enable-maintainer-mode \
14
$@
15
fi
16
17
gmake -w html