repo.or.cz
/
hashtab.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add a Makefile for gnu make
[hashtab.git]
/
Makefile.generic
blob
f85bdbe0caa297591c6a6cdb5d4d1c85edaaa611
1
CFLAGS+=-I. -Wall
2
all:
3
cc -o hashtab.o -c hashtab.c $(CFLAGS)
4
cc -o example.o -c example.c $(CFLAGS)
5
cc -o example example.o hashtab.o $(CFLAGS)
6
clean:
7
rm -f *.o example