repo.or.cz
/
neatas.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Makefile: use -O2 instead of -Os
[neatas.git]
/
Makefile
blob
11c1d8fcb7ab75e2976059016964d5672afc553b
1
CC
=
cc
2
CFLAGS
= -
Wall
-
O2
3
LDFLAGS
=
4
5
all
:
neatas
6
.c.o
:
7
$(
CC
) -
c
$(
CFLAGS
) $<
8
neatas
:
neatas.o out.o
9
$(
CC
) -
o
$
@
$
^
$(
LDFLAGS
)
10
clean
:
11
rm
-
f neatas
*
.o