repo.or.cz
/
Tsunagari.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
stdlib.ai.dumb -> stdlib.ai.wander
[Tsunagari.git]
/
Makefile
blob
95f39b2d7e655526eb2ff7cb260876ccebaed4d8
1
# Top level Makefile for Tsunagari
2
3
all
:
debug
4
5
debug
:
6
$(
MAKE
) -
C src
all
BLDCFLAGS
=
"-g"
7
8
release
:
9
$(
MAKE
) -
C src
all
BLDCFLAGS
=
"-O2 -flto"
BLDLDFLAGS
=
"-O2 -flto -s"
10
11
profile
:
12
$(
MAKE
) -
C src
all
BLDCFLAGS
=
"-pg"
BLDLDFLAGS
=
"-pg"
13
14
clean
:
15
$(
MAKE
) -
C src
clean
16