From: lordhavoc Date: Thu, 13 Dec 2001 18:24:05 +0000 (+0000) Subject: forgot to add this X-Git-Tag: RELEASE_0_2_0_RC1~731 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f4c2e8ef56b5f40a2d2187a4d4f8a24a7163ad6c;p=xonotic%2Fdarkplaces.git forgot to add this git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@1256 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/buildnum/makefile b/buildnum/makefile new file mode 100644 index 00000000..cd4a1dbf --- /dev/null +++ b/buildnum/makefile @@ -0,0 +1,14 @@ +all: buildnum + +.c.o: + gcc -Wall -c $*.c + +buildnum: buildnum.o + gcc -o $@ $^ + +clean: + -rm -f buildnum.o buildnum *.d + +.PHONY: clean + +-include *.d