repo.or.cz
/
yuchen.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
modified: tags
[yuchen.git]
/
Makefile
blob
32cca29904d967485f687100ba7d6bb7ed61e57b
1
#Makefile <sfxhash>
2
3
SOURCE
:= $(
wildcard
*
.c
)
4
OBJ
=
"sfxhash"
5
6
$(
OBJ
):$(
SOURCE
)
7
gcc
-
o
$
@
$(
SOURCE
)
8
9
clean
:
10
-
rm
-
f
$(
OBJ
)