From: Rudolf Polzer Date: Wed, 21 Dec 2011 09:17:36 +0000 (+0100) Subject: fix makefile dependencies X-Git-Tag: xonotic-v0.6.0~74^2~84 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9319df151f0cdace865656707e473ff1dcbad0fb;p=xonotic%2Fxonotic-data.pk3dir.git fix makefile dependencies --- diff --git a/qcsrc/Makefile b/qcsrc/Makefile index 4aab39fe3..957bd76fd 100644 --- a/qcsrc/Makefile +++ b/qcsrc/Makefile @@ -27,12 +27,12 @@ qc-recursive: ../menu.dat ../progs.dat ../csprogs.dat clean: rm -f ../progs.dat ../menu.dat ../csprogs.dat -FILES_CSPROGS = $(shell find client common warpzonelib -type f -not -name fteqcc.log -not -name qc.asm) $(wildcard server/w_*.qc) +FILES_CSPROGS = $(shell find client common warpzonelib csqcmodels -type f -not -name fteqcc.log -not -name qc.asm) $(wildcard server/w_*.qc) ../csprogs.dat: $(FILES_CSPROGS) @echo make[1]: Entering directory \`$(PWD)/client\' cd client && $(FTEQCC) $(FTEQCCFLAGS) $(FTEQCCFLAGS_CSPROGS) -FILES_PROGS = $(shell find server common warpzonelib -type f -not -name fteqcc.log -not -name qc.asm) $(wildcard server/w_*.qc) +FILES_PROGS = $(shell find server common warpzonelib csqcmodels -type f -not -name fteqcc.log -not -name qc.asm) $(wildcard server/w_*.qc) ../progs.dat: $(FILES_PROGS) @echo make[1]: Entering directory \`$(PWD)/server\' cd server && $(FTEQCC) $(FTEQCCFLAGS) $(FTEQCCFLAGS_PROGS)