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