]> icculus.org git repositories - divverent/darkplaces.git/blob - makefile
MOVETYPE_STEP entities should now fall when support is removed (even if it is not...
[divverent/darkplaces.git] / makefile
1 #uncomment one of these according to your sound driver
2 #if you use ALSA version 0.9.x
3 #SND=snd_alsa_0_9.o
4 #SOUNDLIB=-lasound
5 #if you use ALSA version 0.5.x
6 SND=snd_alsa_0_5.o
7 SOUNDLIB=-lasound
8 #if you use the kernel sound driver or OSS
9 #SND=snd_oss.o
10 #SOUNDLIB=
11
12 OBJECTS= builddate.o cd_linux.o chase.o cl_demo.o cl_input.o cl_main.o cl_parse.o cl_tent.o cmd.o common.o console.o crc.o cvar.o fractalnoise.o gl_draw.o r_sky.o gl_rmain.o gl_rsurf.o host.o host_cmd.o image.o keys.o mathlib.o menu.o model_alias.o model_brush.o model_shared.o model_sprite.o net_bsd.o net_udp.o net_dgrm.o net_loop.o net_main.o pr_cmds.o pr_edict.o pr_exec.o r_light.o r_particles.o r_explosion.o sbar.o snd_dma.o snd_mem.o snd_mix.o $(SND) sv_main.o sv_move.o sv_phys.o sv_user.o sv_light.o sys_linux.o transform.o view.o wad.o world.o zone.o vid_shared.o palette.o r_crosshairs.o gl_textures.o gl_models.o r_sprites.o r_modules.o r_explosion.o r_lerpanim.o protocol.o quakeio.o r_clip.o ui.o portals.o sys_shared.o cl_light.o gl_backend.o cl_particles.o cl_screen.o cgamevm.o cgame.o
13
14 #K6/athlon optimizations
15 CPUOPTIMIZATIONS=-march=k6
16 #athlon optimizations (only for gcc 2.96 and up)
17 #CPUOPTIMIZATIONS=-march=athlon
18 #686 optimizations
19 #CPUOPTIMIZATIONS=-march=i686
20
21 #use this line for profiling
22 PROFILEOPTION=-pg -g
23 NOPROFILEOPTIMIZATIONS=
24 #use this line for no profiling
25 #PROFILEOPTION=
26 #NOPROFILEOPTIMIZATIONS=-fomit-frame-pointer
27 #use these lines for debugging without profiling
28 #PROFILEOPTION=
29 #NOPROFILEOPTIMIZATIONS=
30
31 #note:
32 #the -Werror can be removed to compile even if there are warnings,
33 #this is used to ensure that all released versions are free of warnings.
34
35 #normal compile
36 OPTIMIZATIONS= -O6 -ffast-math -funroll-loops $(NOPROFILEOPTIMIZATIONS) -fexpensive-optimizations $(CPUOPTIMIZATIONS)
37 CFLAGS= -MD -Wall -Werror -I/usr/X11R6/include -I/usr/include/glide $(OPTIMIZATIONS) $(PROFILEOPTION)
38 #debug compile
39 #OPTIMIZATIONS=
40 #CFLAGS= -MD -Wall -Werror -I/usr/X11R6/include -ggdb $(OPTIMIZATIONS) $(PROFILEOPTION)
41
42 LDFLAGS= -L/usr/X11R6/lib -lm -lX11 -lXext -lXIE -lXxf86dga -lXxf86vm -lGL -ldl $(SOUNDLIB) $(PROFILEOPTION)
43
44 #if you don't need the -3dfx version, use this line
45 all: builddate darkplaces-glx
46 #all: builddate darkplaces-glx darkplaces-3dfx
47
48 builddate:
49         touch builddate.c
50
51 .c.o:
52         gcc $(CFLAGS) -c $*.c
53
54 darkplaces-glx: $(OBJECTS) vid_glx.o
55         gcc -o $@ $^ $(LDFLAGS)
56
57 darkplaces-3dfx: $(OBJECTS) in_svgalib.o vid_3dfxsvga.o
58         gcc -o $@ $^ $(LDFLAGS)
59
60
61 clean:
62         -rm -f darkplaces-glx darkplaces-3dfx *.o *.d
63
64 .PHONY: clean builddate
65
66 -include *.d