forked from fte/fteqw
1
0
Fork 0

Simple makefile for linux fteqcc.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@152 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2004-09-07 18:11:22 +00:00
parent f691881021
commit b32c013a5d
1 changed files with 8 additions and 0 deletions

8
engine/qclib/Makefile Normal file
View File

@ -0,0 +1,8 @@
QCC_OBJS=qccmain.c qcc_cmdlib.c qcc_pr_comp.c qcc_pr_lex.c comprout.c hash.c qcd_main.c
all: qcc
qcc: $(QCC_OBJS)
$(CC) -DQCCONLY -o fteqcc.bin -O3 -s $(QCC_OBJS)