Quake-III-Arena

Quake III Arena GPL Source Release
Log | Files | Refs

lcc.mak (829B)


      1 #
      2 # Makefile for the BSPC tool for the Gladiator Bot
      3 # Intended for LCC-Win32
      4 #
      5 
      6 CC=lcc
      7 CFLAGS=-DC_ONLY -o
      8 OBJS= _files.obj\
      9 	aas_areamerging.obj\
     10 	aas_cfg.obj\
     11 	aas_create.obj\
     12 	aas_edgemelting.obj\
     13 	aas_facemerging.obj\
     14 	aas_file.obj\
     15 	aas_gsubdiv.obj\
     16 	aas_map.obj\
     17 	aas_prunenodes.obj\
     18 	aas_store.obj\
     19 	brushbsp.obj\
     20 	bspc.obj\
     21 	csg.obj\
     22 	faces.obj\
     23 	glfile.obj\
     24 	l_bsp_hl.obj\
     25 	l_bsp_q1.obj\
     26 	l_bsp_q2.obj\
     27 	l_bsp_sin.obj\
     28 	l_cmd.obj\
     29 	l_log.obj\
     30 	l_math.obj\
     31 	l_mem.obj\
     32 	l_poly.obj\
     33 	l_qfiles.obj\
     34 	l_script.obj\
     35 	l_threads.obj\
     36 	l_utils.obj\
     37 	leakfile.obj\
     38 	map.obj\
     39 	map_hl.obj\
     40 	map_q1.obj\
     41 	map_q2.obj\
     42 	map_q2_new.obj\
     43 	map_sin.obj\
     44 	nodraw.obj\
     45 	portals.obj\
     46 	prtfile.obj\
     47 	textures.obj\
     48 	tree.obj\
     49 	writebsp.obj
     50 
     51 all:	bspc.exe
     52 
     53 bspc.exe:	$(OBJS)
     54 	lcclnk
     55 
     56 clean:
     57 	del *.obj bspc.exe
     58 
     59 %.obj: %.c
     60 	$(CC) $(CFLAGS) $<
     61