repo.or.cz
/
neatcc
/
cc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
gen: zeroing eax doesn't seem necessary
[neatcc/cc.git]
/
Makefile
blob
6cc1095d3c887d12c406d3b22e54bed61449a88e
1
CC
=
cc
2
CFLAGS
= -
Wall
-
Os
-
g
3
LDFLAGS
= -
g
4
5
all
:
ncc
6
.c.o
:
7
$(
CC
) -
c
$(
CFLAGS
) $<
8
ncc
:
ncc.o tok.o gen.o out.o
cpp
.o tab.o
9
$(
CC
) $(
LDFLAGS
) -
o
$
@
$
^
10
11
clean
:
12
rm
-
f
cc
*
.o