]> icculus.org git repositories - divverent/darkplaces.git/blob - makefile.bsd
a GL_DepthTest call I forgot in the last commit
[divverent/darkplaces.git] / makefile.bsd
1 #####  DP_MAKE_TARGET autodetection and arch specific variables #####
2
3 .ifndef DP_MAKE_TARGET
4
5 DP_MAKE_TARGET=bsd
6
7 .endif
8 DP_ARCH != uname
9
10
11 # Command used to delete files
12 CMD_RM=$(CMD_UNIXRM)
13
14 UNIX_X11LIBPATH=-L/usr/X11R6/lib
15
16 # BSD configuration
17 .if $(DP_MAKE_TARGET) == "bsd"
18
19 # FreeBSD uses OSS
20 .if $(DP_ARCH) == "FreeBSD"
21 DEFAULT_SNDAPI=OSS
22 .else
23 DEFAULT_SNDAPI=BSD
24 .endif
25 OBJ_CD=$(OBJ_BSDCD)
26
27 OBJ_CL=$(OBJ_GLX)
28 OBJ_ICON=
29 OBJ_ICON_NEXUIZ=
30
31 LDFLAGS_CL=$(LDFLAGS_BSDCL)
32 LDFLAGS_SV=$(LDFLAGS_BSDSV)
33
34 EXE_CL=$(EXE_UNIXCL)
35 EXE_SV=$(EXE_UNIXSV)
36 EXE_SDL=$(EXE_UNIXSDL)
37 EXE_CLNEXUIZ=$(EXE_UNIXCLNEXUIZ)
38 EXE_SVNEXUIZ=$(EXE_UNIXSVNEXUIZ)
39 EXE_SDLNEXUIZ=$(EXE_UNIXSDLNEXUIZ)
40
41 .endif
42
43
44 ##### Sound configuration #####
45
46 .ifndef DP_SOUND_API
47 DP_SOUND_API=$(DEFAULT_SNDAPI)
48 .endif
49
50 # NULL: no sound
51 .if $(DP_SOUND_API) == "NULL"
52 OBJ_SOUND=$(OBJ_SND_NULL)
53 LIB_SOUND=$(LIB_SND_NULL)
54 .endif
55
56 # OSS: Open Sound System
57 .if $(DP_SOUND_API) == "OSS"
58 OBJ_SOUND=$(OBJ_SND_OSS)
59 LIB_SOUND=$(LIB_SND_OSS)
60 .endif
61
62 # BSD: BSD / Sun audio API
63 .if $(DP_SOUND_API) == "BSD"
64 OBJ_SOUND=$(OBJ_SND_BSD)
65 LIB_SOUND=$(LIB_SND_BSD)
66 .endif
67
68
69 ##### BSD Make specific definitions #####
70
71 MAKE:=$(MAKE) -f makefile.bsd
72
73 DO_LD=$(CC) -o $@ $> $(LDFLAGS)
74
75
76 ##### Definitions shared by all makefiles #####
77 .include "makefile.inc"
78
79
80 ##### Dependency files #####
81
82 DEPEND_FILES != ls *.d
83 .for i in $(DEPEND_FILES)
84 .       include "$i"
85 .endfor