* q3lcc is no longer the default target in the Makefile
* Changed readme to suggest using the root Makefile instead of the one in code/unix
This commit is contained in:
parent
8866ce3f8b
commit
f6cb6eee96
2 changed files with 17 additions and 17 deletions
|
@ -413,21 +413,6 @@ DO_AS=$(CC) $(CFLAGS) -DELF -x assembler-with-cpp -o $@ -c $<
|
|||
DO_DED_CC=$(CC) -DDEDICATED -DC_ONLY $(CFLAGS) -o $@ -c $<
|
||||
DO_WINDRES=$(WINDRES) -i $< -o $@
|
||||
|
||||
#############################################################################
|
||||
# QVM BUILD TOOLS
|
||||
#############################################################################
|
||||
|
||||
Q3LCC=../tools/q3lcc$(BINEXT)
|
||||
Q3ASM=../tools/q3asm$(BINEXT)
|
||||
|
||||
$(Q3LCC):
|
||||
$(MAKE) -C ../tools/lcc install
|
||||
|
||||
$(Q3ASM):
|
||||
$(MAKE) -C ../tools/asm install
|
||||
|
||||
DO_Q3LCC=$(Q3LCC) -o $@ -S -DQ3_VM -I$(CGDIR) -I$(GDIR) -I$(UIDIR) $<
|
||||
|
||||
#############################################################################
|
||||
# MAIN TARGETS
|
||||
#############################################################################
|
||||
|
@ -468,6 +453,21 @@ makedirs:
|
|||
@if [ ! -d $(B)/missionpack/vm ];then mkdir $(B)/missionpack/vm;fi
|
||||
@if [ ! -d $(B)/q3static ];then mkdir $(B)/q3static;fi
|
||||
|
||||
#############################################################################
|
||||
# QVM BUILD TOOLS
|
||||
#############################################################################
|
||||
|
||||
Q3LCC=../tools/q3lcc$(BINEXT)
|
||||
Q3ASM=../tools/q3asm$(BINEXT)
|
||||
|
||||
$(Q3LCC):
|
||||
$(MAKE) -C ../tools/lcc install
|
||||
|
||||
$(Q3ASM):
|
||||
$(MAKE) -C ../tools/asm install
|
||||
|
||||
DO_Q3LCC=$(Q3LCC) -o $@ -S -DQ3_VM -I$(CGDIR) -I$(GDIR) -I$(UIDIR) $<
|
||||
|
||||
#############################################################################
|
||||
# CLIENT/SERVER
|
||||
#############################################################################
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue