]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - Makefile
allow specifying executable type
[xonotic/netradiant.git] / Makefile
1 MAKEFILE_CONF      ?= Makefile.conf
2 -include $(MAKEFILE_CONF)
3
4 ## CONFIGURATION SETTINGS
5 # user customizable stuf
6 # you may override this in Makefile.conf or the environment
7 BUILD              ?= debug
8 # or: release, or: extradebug, or: profile
9 OS                 ?= $(shell uname)
10 # or: Linux, Win32, Darwin
11 LDFLAGS            ?=
12 CFLAGS             ?=
13 CXXFLAGS           ?=
14 CPPFLAGS           ?=
15 LIBS               ?=
16 RADIANT_ABOUTMSG   ?= Custom build
17
18 # warning: this directory may NOT contain any files other than the ones written by this Makefile!
19 # NEVER SET THIS TO A SYSTEM WIDE "bin" DIRECTORY!
20 INSTALLDIR         ?= install
21
22 CC                 ?= gcc
23 CXX                ?= g++
24 RANLIB             ?= ranlib
25 AR                 ?= ar
26 LDD                ?= ldd # nothing on Win32
27 OTOOL              ?= # only used on OS X
28 WINDRES            ?= windres # only used on Win32
29
30 PKGCONFIG          ?= pkg-config
31 PKG_CONFIG_PATH    ?=
32
33 SH                 ?= $(SHELL)
34 ECHO               ?= echo
35 ECHO_NOLF          ?= echo -n
36 CAT                ?= cat
37 MKDIR              ?= mkdir -p
38 CP                 ?= cp
39 CP_R               ?= $(CP) -r
40 RM                 ?= rm
41 RM_R               ?= $(RM) -r
42 TEE_STDERR         ?= | tee /dev/stderr
43 TR                 ?= tr
44 FIND               ?= find
45 DIFF               ?= diff
46 SED                ?= sed
47
48 # optional:
49 SVNVERSION         ?= svnversion
50
51 STDOUT_TO_DEVNULL  ?= >/dev/null
52 STDERR_TO_DEVNULL  ?= 2>/dev/null
53 STDERR_TO_STDOUT   ?= 2>&1
54 TO_DEVNULL         ?= $(STDOUT_TO_DEVNULL) $(STDERR_TO_STDOUT)
55
56 CPPFLAGS_GLIB      ?= $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) glib-2.0 --cflags $(STDERR_TO_DEVNULL))
57 LIBS_GLIB          ?= $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) glib-2.0 --libs-only-L $(STDERR_TO_DEVNULL)) \
58                       $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) glib-2.0 --libs-only-l $(STDERR_TO_DEVNULL))
59 CPPFLAGS_XML       ?= $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) libxml-2.0 --cflags $(STDERR_TO_DEVNULL))
60 LIBS_XML           ?= $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) libxml-2.0 --libs-only-L $(STDERR_TO_DEVNULL)) \
61                       $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) libxml-2.0 --libs-only-l $(STDERR_TO_DEVNULL))
62 CPPFLAGS_PNG       ?= $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) libpng --cflags $(STDERR_TO_DEVNULL))
63 LIBS_PNG           ?= $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) libpng --libs-only-L $(STDERR_TO_DEVNULL)) \
64                       $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) libpng --libs-only-l $(STDERR_TO_DEVNULL))
65 CPPFLAGS_GTK       ?= $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) gtk+-2.0 --cflags $(STDERR_TO_DEVNULL))
66 LIBS_GTK           ?= $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) gtk+-2.0 --libs-only-L $(STDERR_TO_DEVNULL)) \
67                       $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) gtk+-2.0 --libs-only-l $(STDERR_TO_DEVNULL))
68 CPPFLAGS_GTKGLEXT  ?= $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) gtkglext-1.0 --cflags $(STDERR_TO_DEVNULL))
69 LIBS_GTKGLEXT      ?= $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) gtkglext-1.0 --libs-only-L $(STDERR_TO_DEVNULL)) \
70                       $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) gtkglext-1.0 --libs-only-l $(STDERR_TO_DEVNULL))
71 CPPFLAGS_GL        ?=
72 LIBS_GL            ?= -lGL # -lopengl32 on Win32
73 CPPFLAGS_DL        ?=
74 LIBS_DL            ?= -ldl # nothing on Win32
75 CPPFLAGS_ZLIB      ?=
76 LIBS_ZLIB          ?= -lz
77 DEPEND_ON_MAKEFILE ?= yes
78 DEPENDENCIES_CHECK ?= quiet
79 # or: off, verbose
80
81 # these are used on Win32 only
82 GTKDIR             ?= $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKGCONFIG) gtk+-2.0 --variable=prefix $(STDERR_TO_DEVNULL))
83 WHICHDLL           ?= which
84
85 # alias mingw32 OSes
86 ifeq ($(OS),MINGW32_NT-6.0)
87         OS = Win32
88 endif
89 ifeq ($(OS),Windows_NT)
90         OS = Win32
91 endif
92
93 CFLAGS_COMMON = -MMD -W -Wall -Wcast-align -Wcast-qual -Wno-unused-parameter
94 CPPFLAGS_COMMON =
95 LDFLAGS_COMMON =
96 LIBS_COMMON =
97 CXXFLAGS_COMMON = -Wno-non-virtual-dtor -Wreorder -fno-exceptions -fno-rtti
98
99 ifeq ($(BUILD),debug)
100 ifeq ($(findstring $(CFLAGS),-g),)
101         CFLAGS_COMMON += -g
102         # only add -g if no -g flag is in $(CFLAGS)
103 endif
104 ifeq ($(findstring $(CFLAGS),-O),)
105         CFLAGS_COMMON += -O
106         # only add -O if no -O flag is in $(CFLAGS)
107 endif
108         CPPFLAGS_COMMON +=
109         LDFLAGS_COMMON +=
110 else
111
112 ifeq ($(BUILD),extradebug)
113 ifeq ($(findstring $(CFLAGS),-g),)
114         CFLAGS_COMMON += -g3
115         # only add -g3 if no -g flag is in $(CFLAGS)
116 endif
117         CPPFLAGS_COMMON += -D_DEBUG
118         LDFLAGS_COMMON +=
119 else
120
121 ifeq ($(BUILD),profile)
122 ifeq ($(findstring $(CFLAGS),-g),)
123         CFLAGS_COMMON += -g
124         # only add -g if no -g flag is in $(CFLAGS)
125 endif
126 ifeq ($(findstring $(CFLAGS),-O),)
127         CFLAGS_COMMON += -O
128         # only add -O if no -O flag is in $(CFLAGS)
129 endif
130         CFLAGS_COMMON += -pg
131         CPPFLAGS_COMMON +=
132         LDFLAGS_COMMON += -pg
133 else
134
135 ifeq ($(BUILD),release)
136 ifeq ($(findstring $(CFLAGS),-O),)
137         CFLAGS_COMMON += -O3
138         # only add -O3 if no -O flag is in $(CFLAGS)
139         # to allow overriding the optimizations
140 endif
141         CPPFLAGS_COMMON +=
142         LDFLAGS_COMMON += -s
143 else
144
145 $(error Unsupported build type: $(BUILD))
146 endif
147 endif
148 endif
149 endif
150
151 INSTALLDIR_BASE := $(INSTALLDIR)
152
153 ifeq ($(OS),Linux)
154         CPPFLAGS_COMMON += -DPOSIX -DXWINDOWS
155         CFLAGS_COMMON += -fPIC
156         LDFLAGS_DLL = -fPIC -ldl
157         LIBS_COMMON = -lpthread
158         EXE ?= x86
159         A = a
160         DLL = so
161         MWINDOWS =
162 else
163
164 ifeq ($(OS),Win32)
165         CPPFLAGS_COMMON += -DWIN32 -D_WIN32 -D_inline=inline
166         CFLAGS_COMMON += -mms-bitfields
167         LDFLAGS_DLL = --dll -Wl,--add-stdcall-alias
168         LIBS_COMMON = -lws2_32 -luser32 -lgdi32
169         EXE ?= exe
170         A = a
171         DLL = dll
172         MWINDOWS = -mwindows
173
174         # workaround: we have no "ldd" for Win32, so...
175         LDD =
176         # workaround: OpenGL library for Win32 is called opengl32.dll
177         LIBS_GL = -lopengl32
178         # workaround: no -ldl on Win32
179         LIBS_DL = 
180 else
181
182 ifeq ($(OS),Darwin)
183         CPPFLAGS_COMMON += -DPOSIX -DXWINDOWS
184         CFLAGS_COMMON += -fPIC
185         CXXFLAGS_COMMON += -fno-exceptions -fno-rtti
186         CPPFLAGS_COMMON += -I/sw/include -I/usr/X11R6/include
187         LDFLAGS_COMMON += -L/sw/lib -L/usr/lib -L/usr/X11R6/lib
188         LDFLAGS_DLL += -dynamiclib -ldl
189         EXE ?= ppc
190         A = a
191         DLL = dylib
192         MWINDOWS =
193
194         # workaround for weird prints
195         ECHO_NOLF = /bin/echo -n
196
197         # workaround: http://developer.apple.com/qa/qa2007/qa1567.html
198         LIBS_GL += -lX11 -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
199         LIBS_GTKGLEXT += -lX11 -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
200         # workaround: we have no "ldd" for OS X, so...
201         LDD =
202         OTOOL = otool
203
204         INSTALLDIR := $(INSTALLDIR_BASE)/NetRadiant.app/Contents/MacOS/install
205 else
206
207 $(error Unsupported build OS: $(OS))
208 endif
209 endif
210 endif
211
212 # VERSION!
213 RADIANT_VERSION = 1.5.0n
214 RADIANT_MAJOR_VERSION = 5
215 RADIANT_MINOR_VERSION = 0
216 Q3MAP_VERSION = 2.5.17n
217
218 # Executable extension
219 RADIANT_EXECUTABLE := $(EXE)
220
221 SVN_VERSION := $(shell $(SVNVERSION) -n $(STDERR_TO_DEVNULL) | $(SED) 's/M$$//g; s/.*://g;')
222 ifneq ($(SVN_VERSION),)
223         RADIANT_VERSION := $(RADIANT_VERSION)-svn$(SVN_VERSION)
224         Q3MAP_VERSION := $(Q3MAP_VERSION)-svn$(SVN_VERSION)
225 endif
226
227 CPPFLAGS += -DRADIANT_VERSION="\"$(RADIANT_VERSION)\"" -DRADIANT_MAJOR_VERSION="\"$(RADIANT_MAJOR_VERSION)\"" -DRADIANT_MINOR_VERSION="\"$(RADIANT_MINOR_VERSION)\"" -DRADIANT_ABOUTMSG="\"$(RADIANT_ABOUTMSG)\"" -DQ3MAP_VERSION="\"$(Q3MAP_VERSION)\"" -DRADIANT_EXECUTABLE="\"$(RADIANT_EXECUTABLE)\""
228
229 .PHONY: all
230 all: \
231         dependencies-check \
232         binaries \
233         install-data \
234         install-dll \
235
236 .PHONY: dependencies-check
237 ifeq ($(findstring $(DEPENDENCIES_CHECK),off),off)
238 dependencies-check:
239         @$(ECHO) dependencies checking disabled, good luck...
240 else
241 dependencies-check:
242         @$(ECHO)
243         @if [ x"$(DEPENDENCIES_CHECK)" = x"verbose" ]; then set -x; fi; \
244         failed=0; \
245         checkbinary() \
246         { \
247                 $(ECHO_NOLF) "Checking for $$2 ($$1)... "; \
248                 $$2 --help $(TO_DEVNULL); \
249                 if [ $$? != 127 ]; then \
250                         $(ECHO) "found."; \
251                 else \
252                         $(ECHO) "not found, please install it or set PATH right!"; \
253                         $(ECHO) "To see the failed commands, set DEPENDENCIES_CHECK=verbose"; \
254                         $(ECHO) "To proceed anyway, set DEPENDENCIES_CHECK=off"; \
255                         failed=1; \
256                 fi; \
257         }; \
258         $(ECHO) checking that the build tools exist; \
259         checkbinary "bash (or another shell)" "$(SH)"; \
260         checkbinary coreutils "$(ECHO)"; \
261         checkbinary coreutils "$(ECHO_NOLF)"; \
262         checkbinary coreutils "$(CAT)"; \
263         checkbinary coreutils "$(MKDIR)"; \
264         checkbinary coreutils "$(CP)"; \
265         checkbinary coreutils "$(CP_R)"; \
266         checkbinary coreutils "$(RM)"; \
267         checkbinary coreutils "$(RM_R)"; \
268         checkbinary coreutils "$(ECHO) test $(TEE_STDERR)"; \
269         checkbinary sed "$(SED)"; \
270         checkbinary findutils "$(FIND)"; \
271         checkbinary diff "$(DIFF)"; \
272         checkbinary gcc "$(CC)"; \
273         checkbinary g++ "$(CXX)"; \
274         checkbinary binutils "$(RANLIB)"; \
275         checkbinary binutils "$(AR)"; \
276         checkbinary pkg-config "$(PKGCONFIG)"; \
277         [ "$(OS)" = "Win32" ] && checkbinary mingw32 "$(WINDRES)"; \
278         [ -n "$(LDD)" ] && checkbinary libc6 "$(LDD)"; \
279         [ -n "$(OTOOL)" ] && checkbinary xcode "$(OTOOL)"; \
280         [ "$$failed" = "0" ] && $(ECHO) All required tools have been found!
281         @$(ECHO)
282         @if [ x"$(DEPENDENCIES_CHECK)" = x"verbose" ]; then set -x; fi; \
283         failed=0; \
284         checkheader() \
285         { \
286                 $(ECHO_NOLF) "Checking for $$2 ($$1)... "; \
287                 if \
288                         $(CXX) conftest.cpp $(CFLAGS) $(CXXFLAGS) $(CFLAGS_COMMON) $(CXXFLAGS_COMMON) $(CPPFLAGS) $(CPPFLAGS_COMMON) $$4 -DCONFTEST_HEADER="<$$2>" -DCONFTEST_SYMBOL="$$3" $(TARGET_ARCH) $(LDFLAGS) -c -o conftest.o $(TO_DEVNULL) && \
289                         $(CXX) conftest.o $(LDFLAGS) $(LDFLAGS_COMMON) $$5 $(LIBS_COMMON) $(LIBS) -o conftest $(TO_DEVNULL); \
290                 then \
291                         $(RM) conftest conftest.o conftest.d; \
292                         $(ECHO) "found."; \
293                 else \
294                         $(RM) conftest conftest.o conftest.d; \
295                         $(ECHO) "not found, please install it or set PKG_CONFIG_PATH right!"; \
296                         $(ECHO) "To see the failed commands, set DEPENDENCIES_CHECK=verbose"; \
297                         $(ECHO) "To proceed anyway, set DEPENDENCIES_CHECK=off"; \
298                         failed=1; \
299                 fi; \
300         }; \
301         $(ECHO) checking that the dependencies exist; \
302         checkheader libglib2.0-dev glib/gutils.h g_path_is_absolute "$(CPPFLAGS_GLIB)" "$(LIBS_GLIB)"; \
303         checkheader libxml2-dev libxml/xpath.h xmlXPathInit "$(CPPFLAGS_XML)" "$(LIBS_XML)"; \
304         checkheader libpng12-dev png.h png_create_read_struct "$(CPPFLAGS_PNG)" "$(LIBS_PNG)"; \
305         checkheader "mesa-common-dev (or another OpenGL library)" GL/gl.h glClear "$(CPPFLAGS_GL)" "$(LIBS_GL)"; \
306         checkheader libgtk2.0-dev gtk/gtkdialog.h gtk_dialog_run "$(CPPFLAGS_GTK)" "$(LIBS_GTK)"; \
307         checkheader libgtkglext1-dev gtk/gtkglwidget.h gtk_widget_get_gl_context "$(CPPFLAGS_GTKGLEXT)" "$(LIBS_GTKGLEXT)"; \
308         [ "$(OS)" != "Win32" ] && checkheader libc6-dev dlfcn.h dlopen "$(CPPFLAGS_DL)" "$(LIBS_DL)"; \
309         checkheader zlib1g-dev zlib.h zlibVersion "$(CPPFLAGS_ZLIB)" "$(LIBS_ZLIB)"; \
310         [ "$$failed" = "0" ] && $(ECHO) All required libraries have been found!
311         @$(ECHO)
312 endif
313
314 .PHONY: binaries
315 binaries: \
316         $(INSTALLDIR)/heretic2/h2data.$(EXE) \
317         $(INSTALLDIR)/modules/archivepak.$(DLL) \
318         $(INSTALLDIR)/modules/archivewad.$(DLL) \
319         $(INSTALLDIR)/modules/archivezip.$(DLL) \
320         $(INSTALLDIR)/modules/entity.$(DLL) \
321         $(INSTALLDIR)/modules/image.$(DLL) \
322         $(INSTALLDIR)/modules/imagehl.$(DLL) \
323         $(INSTALLDIR)/modules/imagepng.$(DLL) \
324         $(INSTALLDIR)/modules/imageq2.$(DLL) \
325         $(INSTALLDIR)/modules/mapq3.$(DLL) \
326         $(INSTALLDIR)/modules/mapxml.$(DLL) \
327         $(INSTALLDIR)/modules/md3model.$(DLL) \
328         $(INSTALLDIR)/modules/model.$(DLL) \
329         $(INSTALLDIR)/modules/shaders.$(DLL) \
330         $(INSTALLDIR)/modules/vfspk3.$(DLL) \
331         $(INSTALLDIR)/plugins/bobtoolz.$(DLL) \
332         $(INSTALLDIR)/plugins/brushexport.$(DLL) \
333         $(INSTALLDIR)/plugins/prtview.$(DLL) \
334         $(INSTALLDIR)/plugins/shaderplug.$(DLL) \
335         $(INSTALLDIR)/plugins/sunplug.$(DLL) \
336         $(INSTALLDIR)/plugins/ufoaiplug.$(DLL) \
337         $(INSTALLDIR)/q2map.$(EXE) \
338         $(INSTALLDIR)/q3data.$(EXE) \
339         $(INSTALLDIR)/q3map2.$(EXE) \
340         $(INSTALLDIR)/qdata3.$(EXE) \
341         $(INSTALLDIR)/radiant.$(EXE) \
342
343 .PHONY: clean
344 clean:
345         $(RM_R) $(INSTALLDIR_BASE)/
346         $(FIND) . \( -name \*.o -o -name \*.d -o -name \*.$(DLL) -o -name \*.$(A) -o -name \*.$(EXE) \) -exec $(RM) {} \;
347         $(RM) icons/*.rc
348
349 %.$(EXE):
350         file=$@; $(MKDIR) $${file%/*}
351         $(CXX) $^ $(LDFLAGS) $(LDFLAGS_COMMON) $(LDFLAGS_EXTRA) $(LIBS_EXTRA) $(LIBS_COMMON) $(LIBS) -o $@
352         [ -z "$(LDD)" ] || [ -z "`$(LDD) -r $@ $(STDERR_TO_STDOUT) $(STDOUT_TO_DEVNULL) $(TEE_STDERR)`" ] || { $(RM) $@; exit 1; }
353
354 %.$(A):
355         $(AR) rc $@ $^
356         $(RANLIB) $@
357
358 %.$(DLL):
359         file=$@; $(MKDIR) $${file%/*}
360         $(CXX) $^ $(LDFLAGS) $(LDFLAGS_COMMON) $(LDFLAGS_EXTRA) $(LDFLAGS_DLL) $(LIBS_EXTRA) $(LIBS_COMMON) $(LIBS) -shared -o $@
361         [ -z "$(LDD)" ] || [ -z "`$(LDD) -r $@ $(STDERR_TO_STDOUT) $(STDOUT_TO_DEVNULL) $(TEE_STDERR)`" ] || { $(RM) $@; exit 1; }
362
363 %.rc: %.ico
364         $(ECHO) '1 ICON "$<"' > $@
365
366 ifeq ($(OS),Win32)
367 %.o: %.rc
368         $(WINDRES) $< $@
369 endif
370
371 %.o: %.cpp $(if $(findstring $(DEPEND_ON_MAKEFILE),yes),$(wildcard Makefile*),)
372         $(CXX) $< $(CFLAGS) $(CXXFLAGS) $(CFLAGS_COMMON) $(CXXFLAGS_COMMON) $(CPPFLAGS_EXTRA) $(CPPFLAGS_COMMON) $(CPPFLAGS) $(TARGET_ARCH) -c -o $@
373
374 %.o: %.c $(if $(findstring $(DEPEND_ON_MAKEFILE),yes),$(wildcard Makefile*),)
375         $(CC) $< $(CFLAGS) $(CFLAGS_COMMON) $(CPPFLAGS_EXTRA) $(CPPFLAGS_COMMON) $(CPPFLAGS) $(TARGET_ARCH) -c -o $@
376
377 $(INSTALLDIR)/q3map2.$(EXE): LIBS_EXTRA := $(LIBS_XML) $(LIBS_GLIB) $(LIBS_PNG) $(LIBS_ZLIB)
378 $(INSTALLDIR)/q3map2.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) $(CPPFLAGS_GLIB) $(CPPFLAGS_PNG) -Itools/quake3/common -Ilibs -Iinclude
379 $(INSTALLDIR)/q3map2.$(EXE): \
380         tools/quake3/common/cmdlib.o \
381         tools/quake3/common/imagelib.o \
382         tools/quake3/common/inout.o \
383         tools/quake3/common/md4.o \
384         tools/quake3/common/mutex.o \
385         tools/quake3/common/polylib.o \
386         tools/quake3/common/scriplib.o \
387         tools/quake3/common/threads.o \
388         tools/quake3/common/unzip.o \
389         tools/quake3/common/vfs.o \
390         tools/quake3/q3map2/brush.o \
391         tools/quake3/q3map2/brush_primit.o \
392         tools/quake3/q3map2/bspfile_abstract.o \
393         tools/quake3/q3map2/bspfile_ibsp.o \
394         tools/quake3/q3map2/bspfile_rbsp.o \
395         tools/quake3/q3map2/bsp.o \
396         tools/quake3/q3map2/convert_ase.o \
397         tools/quake3/q3map2/convert_map.o \
398         tools/quake3/q3map2/decals.o \
399         tools/quake3/q3map2/facebsp.o \
400         tools/quake3/q3map2/fog.o \
401         tools/quake3/q3map2/image.o \
402         tools/quake3/q3map2/leakfile.o \
403         tools/quake3/q3map2/light_bounce.o \
404         tools/quake3/q3map2/lightmaps_ydnar.o \
405         tools/quake3/q3map2/light.o \
406         tools/quake3/q3map2/light_trace.o \
407         tools/quake3/q3map2/light_ydnar.o \
408         tools/quake3/q3map2/main.o \
409         tools/quake3/q3map2/map.o \
410         tools/quake3/q3map2/mesh.o \
411         tools/quake3/q3map2/model.o \
412         tools/quake3/q3map2/patch.o \
413         tools/quake3/q3map2/path_init.o \
414         tools/quake3/q3map2/portals.o \
415         tools/quake3/q3map2/prtfile.o \
416         tools/quake3/q3map2/shaders.o \
417         tools/quake3/q3map2/surface_extra.o \
418         tools/quake3/q3map2/surface_foliage.o \
419         tools/quake3/q3map2/surface_fur.o \
420         tools/quake3/q3map2/surface_meta.o \
421         tools/quake3/q3map2/surface.o \
422         tools/quake3/q3map2/tjunction.o \
423         tools/quake3/q3map2/tree.o \
424         tools/quake3/q3map2/visflow.o \
425         tools/quake3/q3map2/vis.o \
426         tools/quake3/q3map2/writebsp.o \
427         libddslib.$(A) \
428         libjpeg6.$(A) \
429         libl_net.$(A) \
430         libmathlib.$(A) \
431         libpicomodel.$(A) \
432         $(if $(findstring $(OS),Win32),icons/q3map2.o,) \
433
434 libmathlib.$(A): CPPFLAGS_EXTRA := -Ilibs
435 libmathlib.$(A): \
436         libs/mathlib/bbox.o \
437         libs/mathlib/line.o \
438         libs/mathlib/m4x4.o \
439         libs/mathlib/mathlib.o \
440         libs/mathlib/ray.o \
441
442 libl_net.$(A): CPPFLAGS_EXTRA := -Ilibs
443 libl_net.$(A): \
444         libs/l_net/l_net.o \
445         $(if $(findstring $(OS),Win32),libs/l_net/l_net_wins.o,libs/l_net/l_net_berkley.o) \
446
447 libjpeg6.$(A): CPPFLAGS_EXTRA := -Ilibs/jpeg6 -Ilibs
448 libjpeg6.$(A): \
449         libs/jpeg6/jcomapi.o \
450         libs/jpeg6/jdapimin.o \
451         libs/jpeg6/jdapistd.o \
452         libs/jpeg6/jdatasrc.o \
453         libs/jpeg6/jdcoefct.o \
454         libs/jpeg6/jdcolor.o \
455         libs/jpeg6/jddctmgr.o \
456         libs/jpeg6/jdhuff.o \
457         libs/jpeg6/jdinput.o \
458         libs/jpeg6/jdmainct.o \
459         libs/jpeg6/jdmarker.o \
460         libs/jpeg6/jdmaster.o \
461         libs/jpeg6/jdpostct.o \
462         libs/jpeg6/jdsample.o \
463         libs/jpeg6/jdtrans.o \
464         libs/jpeg6/jerror.o \
465         libs/jpeg6/jfdctflt.o \
466         libs/jpeg6/jidctflt.o \
467         libs/jpeg6/jmemmgr.o \
468         libs/jpeg6/jmemnobs.o \
469         libs/jpeg6/jpgload.o \
470         libs/jpeg6/jutils.o \
471
472 libpicomodel.$(A): CPPFLAGS_EXTRA := -Ilibs
473 libpicomodel.$(A): \
474         libs/picomodel/lwo/clip.o \
475         libs/picomodel/lwo/envelope.o \
476         libs/picomodel/lwo/list.o \
477         libs/picomodel/lwo/lwio.o \
478         libs/picomodel/lwo/lwo2.o \
479         libs/picomodel/lwo/lwob.o \
480         libs/picomodel/lwo/pntspols.o \
481         libs/picomodel/lwo/surface.o \
482         libs/picomodel/lwo/vecmath.o \
483         libs/picomodel/lwo/vmap.o \
484         libs/picomodel/picointernal.o \
485         libs/picomodel/picomodel.o \
486         libs/picomodel/picomodules.o \
487         libs/picomodel/pm_3ds.o \
488         libs/picomodel/pm_ase.o \
489         libs/picomodel/pm_fm.o \
490         libs/picomodel/pm_lwo.o \
491         libs/picomodel/pm_md2.o \
492         libs/picomodel/pm_md3.o \
493         libs/picomodel/pm_mdc.o \
494         libs/picomodel/pm_ms3d.o \
495         libs/picomodel/pm_obj.o \
496         libs/picomodel/pm_terrain.o \
497
498 libddslib.$(A): CPPFLAGS_EXTRA := -Ilibs
499 libddslib.$(A): \
500         libs/ddslib/ddslib.o \
501
502 $(INSTALLDIR)/q3data.$(EXE): LIBS_EXTRA := $(LIBS_XML) $(LIBS_GLIB) $(LIBS_ZLIB)
503 $(INSTALLDIR)/q3data.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) $(CPPFLAGS_GLIB) $(CPPFLAGS_ZLIB) -Itools/quake3/common -Ilibs -Iinclude
504 $(INSTALLDIR)/q3data.$(EXE): \
505         tools/quake3/common/aselib.o \
506         tools/quake3/common/bspfile.o \
507         tools/quake3/common/cmdlib.o \
508         tools/quake3/common/imagelib.o \
509         tools/quake3/common/inout.o \
510         tools/quake3/common/md4.o \
511         tools/quake3/common/scriplib.o \
512         tools/quake3/common/trilib.o \
513         tools/quake3/common/unzip.o \
514         tools/quake3/common/vfs.o \
515         tools/quake3/q3data/3dslib.o \
516         tools/quake3/q3data/compress.o \
517         tools/quake3/q3data/images.o \
518         tools/quake3/q3data/md3lib.o \
519         tools/quake3/q3data/models.o \
520         tools/quake3/q3data/p3dlib.o \
521         tools/quake3/q3data/polyset.o \
522         tools/quake3/q3data/q3data.o \
523         tools/quake3/q3data/stripper.o \
524         tools/quake3/q3data/video.o \
525         libl_net.$(A) \
526         libmathlib.$(A) \
527         $(if $(findstring $(OS),Win32),icons/q3data.o,) \
528
529 $(INSTALLDIR)/radiant.$(EXE): LDFLAGS_EXTRA := $(MWINDOWS)
530 $(INSTALLDIR)/radiant.$(EXE): LIBS_EXTRA := $(LIBS_GL) $(LIBS_DL) $(LIBS_XML) $(LIBS_GLIB) $(LIBS_GTK) $(LIBS_GTKGLEXT) $(LIBS_ZLIB)
531 $(INSTALLDIR)/radiant.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_GL) $(CPPFLAGS_DL) $(CPPFLAGS_XML) $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) $(CPPFLAGS_GTKGLEXT) -Ilibs -Iinclude
532 $(INSTALLDIR)/radiant.$(EXE): \
533         radiant/autosave.o \
534         radiant/brushmanip.o \
535         radiant/brushmodule.o \
536         radiant/brushnode.o \
537         radiant/brush.o \
538         radiant/brush_primit.o \
539         radiant/brushtokens.o \
540         radiant/brushxml.o \
541         radiant/build.o \
542         radiant/camwindow.o \
543         radiant/clippertool.o \
544         radiant/commands.o \
545         radiant/console.o \
546         radiant/csg.o \
547         radiant/dialog.o \
548         radiant/eclass_def.o \
549         radiant/eclass_doom3.o \
550         radiant/eclass_fgd.o \
551         radiant/eclass.o \
552         radiant/eclass_xml.o \
553         radiant/entityinspector.o \
554         radiant/entitylist.o \
555         radiant/entity.o \
556         radiant/environment.o \
557         radiant/error.o \
558         radiant/feedback.o \
559         radiant/filetypes.o \
560         radiant/filters.o \
561         radiant/findtexturedialog.o \
562         radiant/glwidget.o \
563         radiant/grid.o \
564         radiant/groupdialog.o \
565         radiant/gtkdlgs.o \
566         radiant/gtkmisc.o \
567         radiant/help.o \
568         radiant/image.o \
569         radiant/mainframe.o \
570         radiant/main.o \
571         radiant/map.o \
572         $(if $(findstring $(OS),Win32),radiant/multimon.o,) \
573         radiant/mru.o \
574         radiant/nullmodel.o \
575         radiant/parse.o \
576         radiant/patchdialog.o \
577         radiant/patchmanip.o \
578         radiant/patchmodule.o \
579         radiant/patch.o \
580         radiant/pluginapi.o \
581         radiant/pluginmanager.o \
582         radiant/pluginmenu.o \
583         radiant/plugin.o \
584         radiant/plugintoolbar.o \
585         radiant/points.o \
586         radiant/preferencedictionary.o \
587         radiant/preferences.o \
588         radiant/qe3.o \
589         radiant/qgl.o \
590         radiant/referencecache.o \
591         radiant/renderer.o \
592         radiant/renderstate.o \
593         radiant/scenegraph.o \
594         radiant/selection.o \
595         radiant/select.o \
596         radiant/server.o \
597         radiant/shaders.o \
598         radiant/sockets.o \
599         radiant/stacktrace.o \
600         radiant/surfacedialog.o \
601         radiant/texmanip.o \
602         radiant/textures.o \
603         radiant/texwindow.o \
604         radiant/timer.o \
605         radiant/treemodel.o \
606         radiant/undo.o \
607         radiant/url.o \
608         radiant/view.o \
609         radiant/watchbsp.o \
610         radiant/winding.o \
611         radiant/windowobservers.o \
612         radiant/xmlstuff.o \
613         radiant/xywindow.o \
614         libcmdlib.$(A) \
615         libgtkutil.$(A) \
616         libl_net.$(A) \
617         libmathlib.$(A) \
618         libprofile.$(A) \
619         libxmllib.$(A) \
620         $(if $(findstring $(OS),Win32),icons/radiant.o,) \
621
622 libcmdlib.$(A): CPPFLAGS_EXTRA := -Ilibs
623 libcmdlib.$(A): \
624         libs/cmdlib/cmdlib.o \
625
626 libprofile.$(A): CPPFLAGS_EXTRA := -Ilibs -Iinclude
627 libprofile.$(A): \
628         libs/profile/file.o \
629         libs/profile/profile.o \
630
631 libgtkutil.$(A): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) $(CPPFLAGS_GTKGLEXT) -Ilibs -Iinclude
632 libgtkutil.$(A): \
633         libs/gtkutil/accelerator.o \
634         libs/gtkutil/button.o \
635         libs/gtkutil/clipboard.o \
636         libs/gtkutil/closure.o \
637         libs/gtkutil/container.o \
638         libs/gtkutil/cursor.o \
639         libs/gtkutil/dialog.o \
640         libs/gtkutil/entry.o \
641         libs/gtkutil/filechooser.o \
642         libs/gtkutil/frame.o \
643         libs/gtkutil/glfont.o \
644         libs/gtkutil/glwidget.o \
645         libs/gtkutil/idledraw.o \
646         libs/gtkutil/image.o \
647         libs/gtkutil/menu.o \
648         libs/gtkutil/messagebox.o \
649         libs/gtkutil/nonmodal.o \
650         libs/gtkutil/paned.o \
651         libs/gtkutil/pointer.o \
652         libs/gtkutil/toolbar.o \
653         libs/gtkutil/widget.o \
654         libs/gtkutil/window.o \
655         libs/gtkutil/xorrectangle.o \
656
657 libxmllib.$(A): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) $(CPPFLAGS_GLIB) -Ilibs -Iinclude
658 libxmllib.$(A): \
659         libs/xml/ixml.o \
660         libs/xml/xmlelement.o \
661         libs/xml/xmlparser.o \
662         libs/xml/xmltextags.o \
663         libs/xml/xmlwriter.o \
664
665 $(INSTALLDIR)/modules/archivezip.$(DLL): LIBS_EXTRA := $(LIBS_ZLIB)
666 $(INSTALLDIR)/modules/archivezip.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_ZLIB) -Ilibs -Iinclude
667 $(INSTALLDIR)/modules/archivezip.$(DLL): \
668         plugins/archivezip/archive.o \
669         plugins/archivezip/pkzip.o \
670         plugins/archivezip/plugin.o \
671         plugins/archivezip/zlibstream.o \
672
673 $(INSTALLDIR)/modules/archivewad.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
674 $(INSTALLDIR)/modules/archivewad.$(DLL): \
675         plugins/archivewad/archive.o \
676         plugins/archivewad/plugin.o \
677         plugins/archivewad/wad.o \
678
679 $(INSTALLDIR)/modules/archivepak.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
680 $(INSTALLDIR)/modules/archivepak.$(DLL): \
681         plugins/archivepak/archive.o \
682         plugins/archivepak/pak.o \
683         plugins/archivepak/plugin.o \
684
685 $(INSTALLDIR)/modules/entity.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
686 $(INSTALLDIR)/modules/entity.$(DLL): \
687         plugins/entity/angle.o \
688         plugins/entity/angles.o \
689         plugins/entity/colour.o \
690         plugins/entity/doom3group.o \
691         plugins/entity/eclassmodel.o \
692         plugins/entity/entity.o \
693         plugins/entity/filters.o \
694         plugins/entity/generic.o \
695         plugins/entity/group.o \
696         plugins/entity/light.o \
697         plugins/entity/miscmodel.o \
698         plugins/entity/model.o \
699         plugins/entity/modelskinkey.o \
700         plugins/entity/namedentity.o \
701         plugins/entity/origin.o \
702         plugins/entity/plugin.o \
703         plugins/entity/rotation.o \
704         plugins/entity/scale.o \
705         plugins/entity/skincache.o \
706         plugins/entity/targetable.o \
707
708 $(INSTALLDIR)/modules/image.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
709 $(INSTALLDIR)/modules/image.$(DLL): \
710         plugins/image/bmp.o \
711         plugins/image/dds.o \
712         plugins/image/image.o \
713         plugins/image/jpeg.o \
714         plugins/image/pcx.o \
715         plugins/image/tga.o \
716         libddslib.$(A) \
717         libjpeg6.$(A) \
718
719 $(INSTALLDIR)/modules/imageq2.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
720 $(INSTALLDIR)/modules/imageq2.$(DLL): \
721         plugins/imageq2/imageq2.o \
722         plugins/imageq2/wal32.o \
723         plugins/imageq2/wal.o \
724
725 $(INSTALLDIR)/modules/imagehl.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
726 $(INSTALLDIR)/modules/imagehl.$(DLL): \
727         plugins/imagehl/hlw.o \
728         plugins/imagehl/imagehl.o \
729         plugins/imagehl/mip.o \
730         plugins/imagehl/sprite.o \
731
732 $(INSTALLDIR)/modules/imagepng.$(DLL): LIBS_EXTRA := $(LIBS_PNG)
733 $(INSTALLDIR)/modules/imagepng.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_PNG) -Ilibs -Iinclude
734 $(INSTALLDIR)/modules/imagepng.$(DLL): \
735         plugins/imagepng/plugin.o \
736
737 $(INSTALLDIR)/modules/mapq3.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
738 $(INSTALLDIR)/modules/mapq3.$(DLL): \
739         plugins/mapq3/parse.o \
740         plugins/mapq3/plugin.o \
741         plugins/mapq3/write.o \
742
743 $(INSTALLDIR)/modules/mapxml.$(DLL): LIBS_EXTRA := $(LIBS_XML) $(LIBS_GLIB)
744 $(INSTALLDIR)/modules/mapxml.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) $(CPPFLAGS_GLIB) -Ilibs -Iinclude
745 $(INSTALLDIR)/modules/mapxml.$(DLL): \
746         plugins/mapxml/plugin.o \
747         plugins/mapxml/xmlparse.o \
748         plugins/mapxml/xmlwrite.o \
749
750 $(INSTALLDIR)/modules/md3model.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
751 $(INSTALLDIR)/modules/md3model.$(DLL): \
752         plugins/md3model/md2.o \
753         plugins/md3model/md3.o \
754         plugins/md3model/md5.o \
755         plugins/md3model/mdc.o \
756         plugins/md3model/mdlimage.o \
757         plugins/md3model/mdl.o \
758         plugins/md3model/plugin.o \
759
760 $(INSTALLDIR)/modules/model.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
761 $(INSTALLDIR)/modules/model.$(DLL): \
762         plugins/model/model.o \
763         plugins/model/plugin.o \
764         libpicomodel.$(A) \
765
766 $(INSTALLDIR)/modules/shaders.$(DLL): LIBS_EXTRA := $(LIBS_GLIB)
767 $(INSTALLDIR)/modules/shaders.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) -Ilibs -Iinclude
768 $(INSTALLDIR)/modules/shaders.$(DLL): \
769         plugins/shaders/plugin.o \
770         plugins/shaders/shaders.o \
771
772 $(INSTALLDIR)/modules/vfspk3.$(DLL): LIBS_EXTRA := $(LIBS_GLIB)
773 $(INSTALLDIR)/modules/vfspk3.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) -Ilibs -Iinclude
774 $(INSTALLDIR)/modules/vfspk3.$(DLL): \
775         plugins/vfspk3/archive.o \
776         plugins/vfspk3/vfs.o \
777         plugins/vfspk3/vfspk3.o \
778
779 $(INSTALLDIR)/plugins/bobtoolz.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
780 $(INSTALLDIR)/plugins/bobtoolz.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
781 $(INSTALLDIR)/plugins/bobtoolz.$(DLL): \
782         contrib/bobtoolz/bobToolz-GTK.o \
783         contrib/bobtoolz/bsploader.o \
784         contrib/bobtoolz/cportals.o \
785         contrib/bobtoolz/DBobView.o \
786         contrib/bobtoolz/DBrush.o \
787         contrib/bobtoolz/DEntity.o \
788         contrib/bobtoolz/DEPair.o \
789         contrib/bobtoolz/dialogs/dialogs-gtk.o \
790         contrib/bobtoolz/DMap.o \
791         contrib/bobtoolz/DPatch.o \
792         contrib/bobtoolz/DPlane.o \
793         contrib/bobtoolz/DPoint.o \
794         contrib/bobtoolz/DShape.o \
795         contrib/bobtoolz/DTrainDrawer.o \
796         contrib/bobtoolz/DTreePlanter.o \
797         contrib/bobtoolz/DVisDrawer.o \
798         contrib/bobtoolz/DWinding.o \
799         contrib/bobtoolz/funchandlers-GTK.o \
800         contrib/bobtoolz/lists.o \
801         contrib/bobtoolz/misc.o \
802         contrib/bobtoolz/ScriptParser.o \
803         contrib/bobtoolz/shapes.o \
804         contrib/bobtoolz/visfind.o \
805         libcmdlib.$(A) \
806         libmathlib.$(A) \
807         libprofile.$(A) \
808
809 $(INSTALLDIR)/plugins/brushexport.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
810 $(INSTALLDIR)/plugins/brushexport.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
811 $(INSTALLDIR)/plugins/brushexport.$(DLL): \
812         contrib/brushexport/callbacks.o \
813         contrib/brushexport/export.o \
814         contrib/brushexport/interface.o \
815         contrib/brushexport/plugin.o \
816         contrib/brushexport/support.o \
817
818 $(INSTALLDIR)/plugins/prtview.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
819 $(INSTALLDIR)/plugins/prtview.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
820 $(INSTALLDIR)/plugins/prtview.$(DLL): \
821         contrib/prtview/AboutDialog.o \
822         contrib/prtview/ConfigDialog.o \
823         contrib/prtview/LoadPortalFileDialog.o \
824         contrib/prtview/portals.o \
825         contrib/prtview/prtview.o \
826         libprofile.$(A) \
827
828 $(INSTALLDIR)/plugins/shaderplug.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK) $(LIBS_XML)
829 $(INSTALLDIR)/plugins/shaderplug.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) $(CPPFLAGS_XML) -Ilibs -Iinclude
830 $(INSTALLDIR)/plugins/shaderplug.$(DLL): \
831         contrib/shaderplug/shaderplug.o \
832         libxmllib.$(A) \
833
834 $(INSTALLDIR)/plugins/sunplug.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
835 $(INSTALLDIR)/plugins/sunplug.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
836 $(INSTALLDIR)/plugins/sunplug.$(DLL): \
837         contrib/sunplug/sunplug.o \
838
839 $(INSTALLDIR)/qdata3.$(EXE): LIBS_EXTRA := $(LIBS_XML)
840 $(INSTALLDIR)/qdata3.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) -Itools/quake2/common -Ilibs -Iinclude
841 $(INSTALLDIR)/qdata3.$(EXE): \
842         tools/quake2/common/bspfile.o \
843         tools/quake2/common/cmdlib.o \
844         tools/quake2/common/inout.o \
845         tools/quake2/common/l3dslib.o \
846         tools/quake2/common/lbmlib.o \
847         tools/quake2/common/mathlib.o \
848         tools/quake2/common/md4.o \
849         tools/quake2/common/path_init.o \
850         tools/quake2/common/polylib.o \
851         tools/quake2/common/scriplib.o \
852         tools/quake2/common/threads.o \
853         tools/quake2/common/trilib.o \
854         tools/quake2/qdata/images.o \
855         tools/quake2/qdata/models.o \
856         tools/quake2/qdata/qdata.o \
857         tools/quake2/qdata/sprites.o \
858         tools/quake2/qdata/tables.o \
859         tools/quake2/qdata/video.o \
860         libl_net.$(A) \
861         $(if $(findstring $(OS),Win32),icons/qdata3.o,) \
862
863 $(INSTALLDIR)/q2map.$(EXE): LIBS_EXTRA := $(LIBS_XML)
864 $(INSTALLDIR)/q2map.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) -Itools/quake2/common -Ilibs -Iinclude
865 $(INSTALLDIR)/q2map.$(EXE): \
866         tools/quake2/common/bspfile.o \
867         tools/quake2/common/cmdlib.o \
868         tools/quake2/common/inout.o \
869         tools/quake2/common/l3dslib.o \
870         tools/quake2/common/lbmlib.o \
871         tools/quake2/common/mathlib.o \
872         tools/quake2/common/md4.o \
873         tools/quake2/common/path_init.o \
874         tools/quake2/common/polylib.o \
875         tools/quake2/common/scriplib.o \
876         tools/quake2/common/threads.o \
877         tools/quake2/common/trilib.o \
878         tools/quake2/q2map/brushbsp.o \
879         tools/quake2/q2map/csg.o \
880         tools/quake2/q2map/faces.o \
881         tools/quake2/q2map/flow.o \
882         tools/quake2/q2map/glfile.o \
883         tools/quake2/q2map/leakfile.o \
884         tools/quake2/q2map/lightmap.o \
885         tools/quake2/q2map/main.o \
886         tools/quake2/q2map/map.o \
887         tools/quake2/q2map/nodraw.o \
888         tools/quake2/q2map/patches.o \
889         tools/quake2/q2map/portals.o \
890         tools/quake2/q2map/prtfile.o \
891         tools/quake2/q2map/qbsp.o \
892         tools/quake2/q2map/qrad.o \
893         tools/quake2/q2map/qvis.o \
894         tools/quake2/q2map/textures.o \
895         tools/quake2/q2map/trace.o \
896         tools/quake2/q2map/tree.o \
897         tools/quake2/q2map/writebsp.o \
898         libl_net.$(A) \
899         $(if $(findstring $(OS),Win32),icons/q2map.o,) \
900
901 $(INSTALLDIR)/plugins/ufoaiplug.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
902 $(INSTALLDIR)/plugins/ufoaiplug.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
903 $(INSTALLDIR)/plugins/ufoaiplug.$(DLL): \
904         contrib/ufoaiplug/ufoai_filters.o \
905         contrib/ufoaiplug/ufoai_gtk.o \
906         contrib/ufoaiplug/ufoai_level.o \
907         contrib/ufoaiplug/ufoai.o \
908
909 #$(INSTALLDIR)/plugins/bkgrnd2d.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
910 #$(INSTALLDIR)/plugins/bkgrnd2d.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
911 #$(INSTALLDIR)/plugins/bkgrnd2d.$(DLL): \
912 #       contrib/bkgrnd2d/bkgrnd2d.o \
913 #       contrib/bkgrnd2d/dialog.o \
914 #       contrib/bkgrnd2d/plugin.o \
915
916 $(INSTALLDIR)/heretic2/h2data.$(EXE): LIBS_EXTRA := $(LIBS_XML)
917 $(INSTALLDIR)/heretic2/h2data.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) -Itools/quake2/qdata_heretic2/common -Itools/quake2/qdata_heretic2/qcommon -Itools/quake2/qdata_heretic2 -Itools/quake2/common -Ilibs -Iinclude
918 $(INSTALLDIR)/heretic2/h2data.$(EXE): \
919         tools/quake2/qdata_heretic2/common/bspfile.o \
920         tools/quake2/qdata_heretic2/common/cmdlib.o \
921         tools/quake2/qdata_heretic2/common/inout.o \
922         tools/quake2/qdata_heretic2/common/l3dslib.o \
923         tools/quake2/qdata_heretic2/common/lbmlib.o \
924         tools/quake2/qdata_heretic2/common/mathlib.o \
925         tools/quake2/qdata_heretic2/common/md4.o \
926         tools/quake2/qdata_heretic2/common/path_init.o \
927         tools/quake2/qdata_heretic2/common/qfiles.o \
928         tools/quake2/qdata_heretic2/common/scriplib.o \
929         tools/quake2/qdata_heretic2/common/threads.o \
930         tools/quake2/qdata_heretic2/common/token.o \
931         tools/quake2/qdata_heretic2/common/trilib.o \
932         tools/quake2/qdata_heretic2/qcommon/reference.o \
933         tools/quake2/qdata_heretic2/qcommon/resourcemanager.o \
934         tools/quake2/qdata_heretic2/qcommon/skeletons.o \
935         tools/quake2/qdata_heretic2/animcomp.o \
936         tools/quake2/qdata_heretic2/book.o \
937         tools/quake2/qdata_heretic2/fmodels.o \
938         tools/quake2/qdata_heretic2/images.o \
939         tools/quake2/qdata_heretic2/jointed.o \
940         tools/quake2/qdata_heretic2/models.o \
941         tools/quake2/qdata_heretic2/pics.o \
942         tools/quake2/qdata_heretic2/qdata.o \
943         tools/quake2/qdata_heretic2/qd_skeletons.o \
944         tools/quake2/qdata_heretic2/sprites.o \
945         tools/quake2/qdata_heretic2/svdcmp.o \
946         tools/quake2/qdata_heretic2/tables.o \
947         tools/quake2/qdata_heretic2/tmix.o \
948         tools/quake2/qdata_heretic2/video.o \
949         libl_net.$(A) \
950         $(if $(findstring $(OS),Win32),icons/h2data.o,) \
951
952 .PHONY: install-data
953 install-data: binaries
954         $(MKDIR) $(INSTALLDIR)/games
955         $(FIND) $(INSTALLDIR_BASE)/ -name .svn -exec $(RM_R) {} \; -prune
956         [ "$(OS)" != "Darwin" ] || $(CP_R) setup/data/osx/NetRadiant.app/* $(INSTALLDIR_BASE)/NetRadiant.app/
957         set -ex; \
958         for GAME in games/*; do \
959                 if [ -d "$$GAME/tools" ]; then \
960                         GAME=$$GAME/tools; \
961                 fi; \
962                 for GAMEFILE in $$GAME/games/*.game; do \
963                         $(CP) "$$GAMEFILE" $(INSTALLDIR)/games/; \
964                 done; \
965                 for GAMEDIR in $$GAME/*.game; do \
966                         $(CP_R) "$$GAMEDIR" $(INSTALLDIR)/; \
967                 done; \
968         done
969         $(ECHO) $(RADIANT_MINOR_VERSION) > $(INSTALLDIR)/RADIANT_MINOR
970         $(ECHO) $(RADIANT_MAJOR_VERSION) > $(INSTALLDIR)/RADIANT_MAJOR
971         $(CP_R) setup/data/tools/* $(INSTALLDIR)/
972         $(FIND) $(INSTALLDIR_BASE)/ -name .svn -exec $(RM_R) {} \; -prune
973
974 .PHONY: install-dll
975 ifeq ($(OS),Win32)
976 install-dll: binaries
977         MKDIR="$(MKDIR)" CP="$(CP)" CAT="$(CAT)" GTKDIR="$(GTKDIR)" WHICHDLL="$(WHICHDLL)" INSTALLDIR="$(INSTALLDIR)" $(SH) install-dlls.sh
978 else
979 ifeq ($(OS),Darwin)
980 install-dll: binaries
981         CP="$(CP)" OTOOL="$(OTOOL)" INSTALLDIR="$(INSTALLDIR)" $(SH) install-dylibs.sh
982 else
983 install-dll: binaries
984         @$(ECHO) No DLL inclusion implemented for this target.
985 endif
986 endif
987
988 -include $(shell find . -name \*.d)