From: Rudolf Polzer Date: Sat, 24 Dec 2011 18:24:11 +0000 (+0100) Subject: fix dir name X-Git-Tag: xonotic-v0.6.0~74^2~60 X-Git-Url: https://git.xonotic.org/?a=commitdiff_plain;h=4db67ed4874118b0ef63a07dadd668395f1e538d;p=xonotic%2Fxonotic-data.pk3dir.git fix dir name --- diff --git a/qcsrc/Makefile b/qcsrc/Makefile index 957bd76fd..a05d13ff8 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 csqcmodels -type f -not -name fteqcc.log -not -name qc.asm) $(wildcard server/w_*.qc) +FILES_CSPROGS = $(shell find client common warpzonelib csqcmodellib -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 csqcmodels -type f -not -name fteqcc.log -not -name qc.asm) $(wildcard server/w_*.qc) +FILES_PROGS = $(shell find server common warpzonelib csqcmodellib -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)