]> icculus.org git repositories - divverent/darkplaces.git/blob - buildnum/makefile
forgot to add this
[divverent/darkplaces.git] / buildnum / makefile
1 all: buildnum
2
3 .c.o:
4         gcc -Wall -c $*.c
5
6 buildnum: buildnum.o
7         gcc -o $@ $^
8
9 clean:
10         -rm -f buildnum.o buildnum *.d
11
12 .PHONY: clean
13
14 -include *.d