diff options
Diffstat (limited to 'code/unix')
-rw-r--r-- | code/unix/Makefile | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/code/unix/Makefile b/code/unix/Makefile index 5337057..7834fec 100644 --- a/code/unix/Makefile +++ b/code/unix/Makefile @@ -414,21 +414,6 @@ 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 ############################################################################# @@ -469,6 +454,21 @@ makedirs: @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 ############################################################################# |