add a Makefile for gnu make
[hashtab.git] / Makefile.generic
blobf85bdbe0caa297591c6a6cdb5d4d1c85edaaa611
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