aboutsummaryrefslogtreecommitdiffstats
path: root/code/bspc/lcc.mak
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-10-29 23:13:09 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-10-29 23:13:09 +0000
commitce25a7def5dc658d78c06016494b90972f1cf973 (patch)
treeba01dacc114803beafb50a02ce7b01d13302e7ad /code/bspc/lcc.mak
parentcb1d870b05814322bc2ebd26a111eb792e186f33 (diff)
downloadioquake3-aero-ce25a7def5dc658d78c06016494b90972f1cf973.tar.gz
ioquake3-aero-ce25a7def5dc658d78c06016494b90972f1cf973.zip
* General decrufting:
* Removed Q3_STATIC and associated defines * Removed MAC_STATIC * Replaced __LCC__ with Q3_VM * Removed bspc and splines directories git-svn-id: svn://svn.icculus.org/quake3/trunk@201 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/bspc/lcc.mak')
-rw-r--r--code/bspc/lcc.mak61
1 files changed, 0 insertions, 61 deletions
diff --git a/code/bspc/lcc.mak b/code/bspc/lcc.mak
deleted file mode 100644
index 1b99864..0000000
--- a/code/bspc/lcc.mak
+++ /dev/null
@@ -1,61 +0,0 @@
-#
-# Makefile for the BSPC tool for the Gladiator Bot
-# Intended for LCC-Win32
-#
-
-CC=lcc
-CFLAGS=-DC_ONLY -o
-OBJS= _files.obj\
- aas_areamerging.obj\
- aas_cfg.obj\
- aas_create.obj\
- aas_edgemelting.obj\
- aas_facemerging.obj\
- aas_file.obj\
- aas_gsubdiv.obj\
- aas_map.obj\
- aas_prunenodes.obj\
- aas_store.obj\
- brushbsp.obj\
- bspc.obj\
- csg.obj\
- faces.obj\
- glfile.obj\
- l_bsp_hl.obj\
- l_bsp_q1.obj\
- l_bsp_q2.obj\
- l_bsp_sin.obj\
- l_cmd.obj\
- l_log.obj\
- l_math.obj\
- l_mem.obj\
- l_poly.obj\
- l_qfiles.obj\
- l_script.obj\
- l_threads.obj\
- l_utils.obj\
- leakfile.obj\
- map.obj\
- map_hl.obj\
- map_q1.obj\
- map_q2.obj\
- map_q2_new.obj\
- map_sin.obj\
- nodraw.obj\
- portals.obj\
- prtfile.obj\
- textures.obj\
- tree.obj\
- writebsp.obj
-
-all: bspc.exe
-
-bspc.exe: $(OBJS)
- lcclnk
-
-clean:
- del *.obj bspc.exe
-
-%.obj: %.c
- $(CC) $(CFLAGS) $<
-