1 MAKEFILE_CONF ?= Makefile.conf
2 -include $(MAKEFILE_CONF)
4 ## CONFIGURATION SETTINGS
5 # user customizable stuf
6 # you may override this in Makefile.conf or the environment
8 # or: release, or: extradebug, or: profile
10 # or: Linux, Win32, Darwin
16 RADIANT_ABOUTMSG ?= Custom build
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!
26 LDD ?= ldd # nothing on Win32
27 OTOOL ?= # only used on OS X
28 WINDRES ?= windres # only used on Win32
30 PKGCONFIG ?= pkg-config
42 TEE_STDERR ?= | tee /dev/stderr
49 SVNVERSION ?= svnversion
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)
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))
72 LIBS_GL ?= -lGL # -lopengl32 on Win32
74 LIBS_DL ?= -ldl # nothing on Win32
77 DEPEND_ON_MAKEFILE ?= yes
78 DEPENDENCIES_CHECK ?= quiet
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))
86 ifeq ($(OS),MINGW32_NT-6.0)
89 ifeq ($(OS),Windows_NT)
93 CFLAGS_COMMON = -MMD -W -Wall -Wcast-align -Wcast-qual -Wno-unused-parameter
97 CXXFLAGS_COMMON = -Wno-non-virtual-dtor -Wreorder -fno-exceptions -fno-rtti
100 ifeq ($(findstring $(CFLAGS),-g),)
102 # only add -g if no -g flag is in $(CFLAGS)
104 ifeq ($(findstring $(CFLAGS),-O),)
106 # only add -O if no -O flag is in $(CFLAGS)
112 ifeq ($(BUILD),extradebug)
113 ifeq ($(findstring $(CFLAGS),-g),)
115 # only add -g3 if no -g flag is in $(CFLAGS)
117 CPPFLAGS_COMMON += -D_DEBUG
121 ifeq ($(BUILD),profile)
122 ifeq ($(findstring $(CFLAGS),-g),)
124 # only add -g if no -g flag is in $(CFLAGS)
126 ifeq ($(findstring $(CFLAGS),-O),)
128 # only add -O if no -O flag is in $(CFLAGS)
132 LDFLAGS_COMMON += -pg
135 ifeq ($(BUILD),release)
136 ifeq ($(findstring $(CFLAGS),-O),)
138 # only add -O3 if no -O flag is in $(CFLAGS)
139 # to allow overriding the optimizations
145 $(error Unsupported build type: $(BUILD))
151 INSTALLDIR_BASE := $(INSTALLDIR)
154 CPPFLAGS_COMMON += -DPOSIX -DXWINDOWS
155 CFLAGS_COMMON += -fPIC
156 LDFLAGS_DLL = -fPIC -ldl
157 LIBS_COMMON = -lpthread
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
174 # workaround: we have no "ldd" for Win32, so...
176 # workaround: OpenGL library for Win32 is called opengl32.dll
178 # workaround: no -ldl on Win32
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
194 # workaround for weird prints
195 ECHO_NOLF = /bin/echo -n
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...
204 INSTALLDIR := $(INSTALLDIR_BASE)/NetRadiant.app/Contents/MacOS/install
207 $(error Unsupported build OS: $(OS))
213 RADIANT_VERSION = 1.5.0n
214 RADIANT_MAJOR_VERSION = 5
215 RADIANT_MINOR_VERSION = 0
216 Q3MAP_VERSION = 2.5.17n
218 SVN_VERSION := $(shell $(SVNVERSION) -n $(STDERR_TO_DEVNULL) | $(SED) 's/M$$//g; s/.*://g;')
219 ifneq ($(SVN_VERSION),)
220 RADIANT_VERSION := $(RADIANT_VERSION)-svn$(SVN_VERSION)
221 Q3MAP_VERSION := $(Q3MAP_VERSION)-svn$(SVN_VERSION)
224 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)\""
233 .PHONY: dependencies-check
234 ifeq ($(findstring $(DEPENDENCIES_CHECK),off),off)
236 @$(ECHO) dependencies checking disabled, good luck...
240 @if [ x"$(DEPENDENCIES_CHECK)" = x"verbose" ]; then set -x; fi; \
244 $(ECHO_NOLF) "Checking for $$2 ($$1)... "; \
245 $$2 --help $(TO_DEVNULL); \
246 if [ $$? != 127 ]; then \
249 $(ECHO) "not found, please install it or set PATH right!"; \
250 $(ECHO) "To see the failed commands, set DEPENDENCIES_CHECK=verbose"; \
251 $(ECHO) "To proceed anyway, set DEPENDENCIES_CHECK=off"; \
255 $(ECHO) checking that the build tools exist; \
256 checkbinary "bash (or another shell)" "$(SH)"; \
257 checkbinary coreutils "$(ECHO)"; \
258 checkbinary coreutils "$(ECHO_NOLF)"; \
259 checkbinary coreutils "$(CAT)"; \
260 checkbinary coreutils "$(MKDIR)"; \
261 checkbinary coreutils "$(CP)"; \
262 checkbinary coreutils "$(CP_R)"; \
263 checkbinary coreutils "$(RM)"; \
264 checkbinary coreutils "$(RM_R)"; \
265 checkbinary coreutils "$(ECHO) test $(TEE_STDERR)"; \
266 checkbinary sed "$(SED)"; \
267 checkbinary findutils "$(FIND)"; \
268 checkbinary diff "$(DIFF)"; \
269 checkbinary gcc "$(CC)"; \
270 checkbinary g++ "$(CXX)"; \
271 checkbinary binutils "$(RANLIB)"; \
272 checkbinary binutils "$(AR)"; \
273 checkbinary pkg-config "$(PKGCONFIG)"; \
274 [ "$(OS)" = "Win32" ] && checkbinary mingw32 "$(WINDRES)"; \
275 [ -n "$(LDD)" ] && checkbinary libc6 "$(LDD)"; \
276 [ -n "$(OTOOL)" ] && checkbinary xcode "$(OTOOL)"; \
277 [ "$$failed" = "0" ] && $(ECHO) All required tools have been found!
279 @if [ x"$(DEPENDENCIES_CHECK)" = x"verbose" ]; then set -x; fi; \
283 $(ECHO_NOLF) "Checking for $$2 ($$1)... "; \
285 $(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) && \
286 $(CXX) conftest.o $(LDFLAGS) $(LDFLAGS_COMMON) $$5 $(LIBS_COMMON) $(LIBS) -o conftest $(TO_DEVNULL); \
288 $(RM) conftest conftest.o conftest.d; \
291 $(RM) conftest conftest.o conftest.d; \
292 $(ECHO) "not found, please install it or set PKG_CONFIG_PATH right!"; \
293 $(ECHO) "To see the failed commands, set DEPENDENCIES_CHECK=verbose"; \
294 $(ECHO) "To proceed anyway, set DEPENDENCIES_CHECK=off"; \
298 $(ECHO) checking that the dependencies exist; \
299 checkheader libglib2.0-dev glib/gutils.h g_path_is_absolute "$(CPPFLAGS_GLIB)" "$(LIBS_GLIB)"; \
300 checkheader libxml2-dev libxml/xpath.h xmlXPathInit "$(CPPFLAGS_XML)" "$(LIBS_XML)"; \
301 checkheader libpng12-dev png.h png_create_read_struct "$(CPPFLAGS_PNG)" "$(LIBS_PNG)"; \
302 checkheader "mesa-common-dev (or another OpenGL library)" GL/gl.h glClear "$(CPPFLAGS_GL)" "$(LIBS_GL)"; \
303 checkheader libgtk2.0-dev gtk/gtkdialog.h gtk_dialog_run "$(CPPFLAGS_GTK)" "$(LIBS_GTK)"; \
304 checkheader libgtkglext1-dev gtk/gtkglwidget.h gtk_widget_get_gl_context "$(CPPFLAGS_GTKGLEXT)" "$(LIBS_GTKGLEXT)"; \
305 [ "$(OS)" != "Win32" ] && checkheader libc6-dev dlfcn.h dlopen "$(CPPFLAGS_DL)" "$(LIBS_DL)"; \
306 checkheader zlib1g-dev zlib.h zlibVersion "$(CPPFLAGS_ZLIB)" "$(LIBS_ZLIB)"; \
307 [ "$$failed" = "0" ] && $(ECHO) All required libraries have been found!
313 $(INSTALLDIR)/heretic2/h2data.$(EXE) \
314 $(INSTALLDIR)/modules/archivepak.$(DLL) \
315 $(INSTALLDIR)/modules/archivewad.$(DLL) \
316 $(INSTALLDIR)/modules/archivezip.$(DLL) \
317 $(INSTALLDIR)/modules/entity.$(DLL) \
318 $(INSTALLDIR)/modules/image.$(DLL) \
319 $(INSTALLDIR)/modules/imagehl.$(DLL) \
320 $(INSTALLDIR)/modules/imagepng.$(DLL) \
321 $(INSTALLDIR)/modules/imageq2.$(DLL) \
322 $(INSTALLDIR)/modules/mapq3.$(DLL) \
323 $(INSTALLDIR)/modules/mapxml.$(DLL) \
324 $(INSTALLDIR)/modules/md3model.$(DLL) \
325 $(INSTALLDIR)/modules/model.$(DLL) \
326 $(INSTALLDIR)/modules/shaders.$(DLL) \
327 $(INSTALLDIR)/modules/vfspk3.$(DLL) \
328 $(INSTALLDIR)/plugins/bobtoolz.$(DLL) \
329 $(INSTALLDIR)/plugins/brushexport.$(DLL) \
330 $(INSTALLDIR)/plugins/prtview.$(DLL) \
331 $(INSTALLDIR)/plugins/shaderplug.$(DLL) \
332 $(INSTALLDIR)/plugins/sunplug.$(DLL) \
333 $(INSTALLDIR)/plugins/ufoaiplug.$(DLL) \
334 $(INSTALLDIR)/q2map.$(EXE) \
335 $(INSTALLDIR)/q3data.$(EXE) \
336 $(INSTALLDIR)/q3map2.$(EXE) \
337 $(INSTALLDIR)/qdata3.$(EXE) \
338 $(INSTALLDIR)/radiant.$(EXE) \
342 $(RM_R) $(INSTALLDIR_BASE)/
343 $(FIND) . \( -name \*.o -o -name \*.d -o -name \*.$(DLL) -o -name \*.$(A) -o -name \*.$(EXE) \) -exec $(RM) {} \;
347 file=$@; $(MKDIR) $${file%/*}
348 $(CXX) $^ $(LDFLAGS) $(LDFLAGS_COMMON) $(LDFLAGS_EXTRA) $(LIBS_EXTRA) $(LIBS_COMMON) $(LIBS) -o $@
349 [ -z "$(LDD)" ] || [ -z "`$(LDD) -r $@ $(STDERR_TO_STDOUT) $(STDOUT_TO_DEVNULL) $(TEE_STDERR)`" ] || { $(RM) $@; exit 1; }
356 file=$@; $(MKDIR) $${file%/*}
357 $(CXX) $^ $(LDFLAGS) $(LDFLAGS_COMMON) $(LDFLAGS_EXTRA) $(LDFLAGS_DLL) $(LIBS_EXTRA) $(LIBS_COMMON) $(LIBS) -shared -o $@
358 [ -z "$(LDD)" ] || [ -z "`$(LDD) -r $@ $(STDERR_TO_STDOUT) $(STDOUT_TO_DEVNULL) $(TEE_STDERR)`" ] || { $(RM) $@; exit 1; }
361 $(ECHO) '1 ICON "$<"' > $@
368 %.o: %.cpp $(if $(findstring $(DEPEND_ON_MAKEFILE),yes),$(wildcard Makefile*),)
369 $(CXX) $< $(CFLAGS) $(CXXFLAGS) $(CFLAGS_COMMON) $(CXXFLAGS_COMMON) $(CPPFLAGS_EXTRA) $(CPPFLAGS_COMMON) $(CPPFLAGS) $(TARGET_ARCH) -c -o $@
371 %.o: %.c $(if $(findstring $(DEPEND_ON_MAKEFILE),yes),$(wildcard Makefile*),)
372 $(CC) $< $(CFLAGS) $(CFLAGS_COMMON) $(CPPFLAGS_EXTRA) $(CPPFLAGS_COMMON) $(CPPFLAGS) $(TARGET_ARCH) -c -o $@
374 $(INSTALLDIR)/q3map2.$(EXE): LIBS_EXTRA := $(LIBS_XML) $(LIBS_GLIB) $(LIBS_PNG) $(LIBS_ZLIB)
375 $(INSTALLDIR)/q3map2.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) $(CPPFLAGS_GLIB) $(CPPFLAGS_PNG) -Itools/quake3/common -Ilibs -Iinclude
376 $(INSTALLDIR)/q3map2.$(EXE): \
377 tools/quake3/common/cmdlib.o \
378 tools/quake3/common/imagelib.o \
379 tools/quake3/common/inout.o \
380 tools/quake3/common/md4.o \
381 tools/quake3/common/mutex.o \
382 tools/quake3/common/polylib.o \
383 tools/quake3/common/scriplib.o \
384 tools/quake3/common/threads.o \
385 tools/quake3/common/unzip.o \
386 tools/quake3/common/vfs.o \
387 tools/quake3/q3map2/brush.o \
388 tools/quake3/q3map2/brush_primit.o \
389 tools/quake3/q3map2/bspfile_abstract.o \
390 tools/quake3/q3map2/bspfile_ibsp.o \
391 tools/quake3/q3map2/bspfile_rbsp.o \
392 tools/quake3/q3map2/bsp.o \
393 tools/quake3/q3map2/convert_ase.o \
394 tools/quake3/q3map2/convert_map.o \
395 tools/quake3/q3map2/decals.o \
396 tools/quake3/q3map2/facebsp.o \
397 tools/quake3/q3map2/fog.o \
398 tools/quake3/q3map2/image.o \
399 tools/quake3/q3map2/leakfile.o \
400 tools/quake3/q3map2/light_bounce.o \
401 tools/quake3/q3map2/lightmaps_ydnar.o \
402 tools/quake3/q3map2/light.o \
403 tools/quake3/q3map2/light_trace.o \
404 tools/quake3/q3map2/light_ydnar.o \
405 tools/quake3/q3map2/main.o \
406 tools/quake3/q3map2/map.o \
407 tools/quake3/q3map2/mesh.o \
408 tools/quake3/q3map2/model.o \
409 tools/quake3/q3map2/patch.o \
410 tools/quake3/q3map2/path_init.o \
411 tools/quake3/q3map2/portals.o \
412 tools/quake3/q3map2/prtfile.o \
413 tools/quake3/q3map2/shaders.o \
414 tools/quake3/q3map2/surface_extra.o \
415 tools/quake3/q3map2/surface_foliage.o \
416 tools/quake3/q3map2/surface_fur.o \
417 tools/quake3/q3map2/surface_meta.o \
418 tools/quake3/q3map2/surface.o \
419 tools/quake3/q3map2/tjunction.o \
420 tools/quake3/q3map2/tree.o \
421 tools/quake3/q3map2/visflow.o \
422 tools/quake3/q3map2/vis.o \
423 tools/quake3/q3map2/writebsp.o \
429 $(if $(findstring $(OS),Win32),icons/q3map2.o,) \
431 libmathlib.$(A): CPPFLAGS_EXTRA := -Ilibs
433 libs/mathlib/bbox.o \
434 libs/mathlib/line.o \
435 libs/mathlib/m4x4.o \
436 libs/mathlib/mathlib.o \
439 libl_net.$(A): CPPFLAGS_EXTRA := -Ilibs
442 $(if $(findstring $(OS),Win32),libs/l_net/l_net_wins.o,libs/l_net/l_net_berkley.o) \
444 libjpeg6.$(A): CPPFLAGS_EXTRA := -Ilibs/jpeg6 -Ilibs
446 libs/jpeg6/jcomapi.o \
447 libs/jpeg6/jdapimin.o \
448 libs/jpeg6/jdapistd.o \
449 libs/jpeg6/jdatasrc.o \
450 libs/jpeg6/jdcoefct.o \
451 libs/jpeg6/jdcolor.o \
452 libs/jpeg6/jddctmgr.o \
453 libs/jpeg6/jdhuff.o \
454 libs/jpeg6/jdinput.o \
455 libs/jpeg6/jdmainct.o \
456 libs/jpeg6/jdmarker.o \
457 libs/jpeg6/jdmaster.o \
458 libs/jpeg6/jdpostct.o \
459 libs/jpeg6/jdsample.o \
460 libs/jpeg6/jdtrans.o \
461 libs/jpeg6/jerror.o \
462 libs/jpeg6/jfdctflt.o \
463 libs/jpeg6/jidctflt.o \
464 libs/jpeg6/jmemmgr.o \
465 libs/jpeg6/jmemnobs.o \
466 libs/jpeg6/jpgload.o \
467 libs/jpeg6/jutils.o \
469 libpicomodel.$(A): CPPFLAGS_EXTRA := -Ilibs
471 libs/picomodel/lwo/clip.o \
472 libs/picomodel/lwo/envelope.o \
473 libs/picomodel/lwo/list.o \
474 libs/picomodel/lwo/lwio.o \
475 libs/picomodel/lwo/lwo2.o \
476 libs/picomodel/lwo/lwob.o \
477 libs/picomodel/lwo/pntspols.o \
478 libs/picomodel/lwo/surface.o \
479 libs/picomodel/lwo/vecmath.o \
480 libs/picomodel/lwo/vmap.o \
481 libs/picomodel/picointernal.o \
482 libs/picomodel/picomodel.o \
483 libs/picomodel/picomodules.o \
484 libs/picomodel/pm_3ds.o \
485 libs/picomodel/pm_ase.o \
486 libs/picomodel/pm_fm.o \
487 libs/picomodel/pm_lwo.o \
488 libs/picomodel/pm_md2.o \
489 libs/picomodel/pm_md3.o \
490 libs/picomodel/pm_mdc.o \
491 libs/picomodel/pm_ms3d.o \
492 libs/picomodel/pm_obj.o \
493 libs/picomodel/pm_terrain.o \
495 libddslib.$(A): CPPFLAGS_EXTRA := -Ilibs
497 libs/ddslib/ddslib.o \
499 $(INSTALLDIR)/q3data.$(EXE): LIBS_EXTRA := $(LIBS_XML) $(LIBS_GLIB) $(LIBS_ZLIB)
500 $(INSTALLDIR)/q3data.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) $(CPPFLAGS_GLIB) $(CPPFLAGS_ZLIB) -Itools/quake3/common -Ilibs -Iinclude
501 $(INSTALLDIR)/q3data.$(EXE): \
502 tools/quake3/common/aselib.o \
503 tools/quake3/common/bspfile.o \
504 tools/quake3/common/cmdlib.o \
505 tools/quake3/common/imagelib.o \
506 tools/quake3/common/inout.o \
507 tools/quake3/common/md4.o \
508 tools/quake3/common/scriplib.o \
509 tools/quake3/common/trilib.o \
510 tools/quake3/common/unzip.o \
511 tools/quake3/common/vfs.o \
512 tools/quake3/q3data/3dslib.o \
513 tools/quake3/q3data/compress.o \
514 tools/quake3/q3data/images.o \
515 tools/quake3/q3data/md3lib.o \
516 tools/quake3/q3data/models.o \
517 tools/quake3/q3data/p3dlib.o \
518 tools/quake3/q3data/polyset.o \
519 tools/quake3/q3data/q3data.o \
520 tools/quake3/q3data/stripper.o \
521 tools/quake3/q3data/video.o \
524 $(if $(findstring $(OS),Win32),icons/q3data.o,) \
526 $(INSTALLDIR)/radiant.$(EXE): LDFLAGS_EXTRA := $(MWINDOWS)
527 $(INSTALLDIR)/radiant.$(EXE): LIBS_EXTRA := $(LIBS_GL) $(LIBS_DL) $(LIBS_XML) $(LIBS_GLIB) $(LIBS_GTK) $(LIBS_GTKGLEXT) $(LIBS_ZLIB)
528 $(INSTALLDIR)/radiant.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_GL) $(CPPFLAGS_DL) $(CPPFLAGS_XML) $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) $(CPPFLAGS_GTKGLEXT) -Ilibs -Iinclude
529 $(INSTALLDIR)/radiant.$(EXE): \
531 radiant/brushmanip.o \
532 radiant/brushmodule.o \
533 radiant/brushnode.o \
535 radiant/brush_primit.o \
536 radiant/brushtokens.o \
539 radiant/camwindow.o \
540 radiant/clippertool.o \
545 radiant/eclass_def.o \
546 radiant/eclass_doom3.o \
547 radiant/eclass_fgd.o \
549 radiant/eclass_xml.o \
550 radiant/entityinspector.o \
551 radiant/entitylist.o \
553 radiant/environment.o \
556 radiant/filetypes.o \
558 radiant/findtexturedialog.o \
561 radiant/groupdialog.o \
566 radiant/mainframe.o \
569 $(if $(findstring $(OS),Win32),radiant/multimon.o,) \
571 radiant/nullmodel.o \
573 radiant/patchdialog.o \
574 radiant/patchmanip.o \
575 radiant/patchmodule.o \
577 radiant/pluginapi.o \
578 radiant/pluginmanager.o \
579 radiant/pluginmenu.o \
581 radiant/plugintoolbar.o \
583 radiant/preferencedictionary.o \
584 radiant/preferences.o \
587 radiant/referencecache.o \
589 radiant/renderstate.o \
590 radiant/scenegraph.o \
591 radiant/selection.o \
596 radiant/stacktrace.o \
597 radiant/surfacedialog.o \
600 radiant/texwindow.o \
602 radiant/treemodel.o \
608 radiant/windowobservers.o \
617 $(if $(findstring $(OS),Win32),icons/radiant.o,) \
619 libcmdlib.$(A): CPPFLAGS_EXTRA := -Ilibs
621 libs/cmdlib/cmdlib.o \
623 libprofile.$(A): CPPFLAGS_EXTRA := -Ilibs -Iinclude
625 libs/profile/file.o \
626 libs/profile/profile.o \
628 libgtkutil.$(A): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) $(CPPFLAGS_GTKGLEXT) -Ilibs -Iinclude
630 libs/gtkutil/accelerator.o \
631 libs/gtkutil/button.o \
632 libs/gtkutil/clipboard.o \
633 libs/gtkutil/closure.o \
634 libs/gtkutil/container.o \
635 libs/gtkutil/cursor.o \
636 libs/gtkutil/dialog.o \
637 libs/gtkutil/entry.o \
638 libs/gtkutil/filechooser.o \
639 libs/gtkutil/frame.o \
640 libs/gtkutil/glfont.o \
641 libs/gtkutil/glwidget.o \
642 libs/gtkutil/idledraw.o \
643 libs/gtkutil/image.o \
644 libs/gtkutil/menu.o \
645 libs/gtkutil/messagebox.o \
646 libs/gtkutil/nonmodal.o \
647 libs/gtkutil/paned.o \
648 libs/gtkutil/pointer.o \
649 libs/gtkutil/toolbar.o \
650 libs/gtkutil/widget.o \
651 libs/gtkutil/window.o \
652 libs/gtkutil/xorrectangle.o \
654 libxmllib.$(A): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) $(CPPFLAGS_GLIB) -Ilibs -Iinclude
657 libs/xml/xmlelement.o \
658 libs/xml/xmlparser.o \
659 libs/xml/xmltextags.o \
660 libs/xml/xmlwriter.o \
662 $(INSTALLDIR)/modules/archivezip.$(DLL): LIBS_EXTRA := $(LIBS_ZLIB)
663 $(INSTALLDIR)/modules/archivezip.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_ZLIB) -Ilibs -Iinclude
664 $(INSTALLDIR)/modules/archivezip.$(DLL): \
665 plugins/archivezip/archive.o \
666 plugins/archivezip/pkzip.o \
667 plugins/archivezip/plugin.o \
668 plugins/archivezip/zlibstream.o \
670 $(INSTALLDIR)/modules/archivewad.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
671 $(INSTALLDIR)/modules/archivewad.$(DLL): \
672 plugins/archivewad/archive.o \
673 plugins/archivewad/plugin.o \
674 plugins/archivewad/wad.o \
676 $(INSTALLDIR)/modules/archivepak.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
677 $(INSTALLDIR)/modules/archivepak.$(DLL): \
678 plugins/archivepak/archive.o \
679 plugins/archivepak/pak.o \
680 plugins/archivepak/plugin.o \
682 $(INSTALLDIR)/modules/entity.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
683 $(INSTALLDIR)/modules/entity.$(DLL): \
684 plugins/entity/angle.o \
685 plugins/entity/angles.o \
686 plugins/entity/colour.o \
687 plugins/entity/doom3group.o \
688 plugins/entity/eclassmodel.o \
689 plugins/entity/entity.o \
690 plugins/entity/filters.o \
691 plugins/entity/generic.o \
692 plugins/entity/group.o \
693 plugins/entity/light.o \
694 plugins/entity/miscmodel.o \
695 plugins/entity/model.o \
696 plugins/entity/modelskinkey.o \
697 plugins/entity/namedentity.o \
698 plugins/entity/origin.o \
699 plugins/entity/plugin.o \
700 plugins/entity/rotation.o \
701 plugins/entity/scale.o \
702 plugins/entity/skincache.o \
703 plugins/entity/targetable.o \
705 $(INSTALLDIR)/modules/image.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
706 $(INSTALLDIR)/modules/image.$(DLL): \
707 plugins/image/bmp.o \
708 plugins/image/dds.o \
709 plugins/image/image.o \
710 plugins/image/jpeg.o \
711 plugins/image/pcx.o \
712 plugins/image/tga.o \
716 $(INSTALLDIR)/modules/imageq2.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
717 $(INSTALLDIR)/modules/imageq2.$(DLL): \
718 plugins/imageq2/imageq2.o \
719 plugins/imageq2/wal32.o \
720 plugins/imageq2/wal.o \
722 $(INSTALLDIR)/modules/imagehl.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
723 $(INSTALLDIR)/modules/imagehl.$(DLL): \
724 plugins/imagehl/hlw.o \
725 plugins/imagehl/imagehl.o \
726 plugins/imagehl/mip.o \
727 plugins/imagehl/sprite.o \
729 $(INSTALLDIR)/modules/imagepng.$(DLL): LIBS_EXTRA := $(LIBS_PNG)
730 $(INSTALLDIR)/modules/imagepng.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_PNG) -Ilibs -Iinclude
731 $(INSTALLDIR)/modules/imagepng.$(DLL): \
732 plugins/imagepng/plugin.o \
734 $(INSTALLDIR)/modules/mapq3.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
735 $(INSTALLDIR)/modules/mapq3.$(DLL): \
736 plugins/mapq3/parse.o \
737 plugins/mapq3/plugin.o \
738 plugins/mapq3/write.o \
740 $(INSTALLDIR)/modules/mapxml.$(DLL): LIBS_EXTRA := $(LIBS_XML) $(LIBS_GLIB)
741 $(INSTALLDIR)/modules/mapxml.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) $(CPPFLAGS_GLIB) -Ilibs -Iinclude
742 $(INSTALLDIR)/modules/mapxml.$(DLL): \
743 plugins/mapxml/plugin.o \
744 plugins/mapxml/xmlparse.o \
745 plugins/mapxml/xmlwrite.o \
747 $(INSTALLDIR)/modules/md3model.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
748 $(INSTALLDIR)/modules/md3model.$(DLL): \
749 plugins/md3model/md2.o \
750 plugins/md3model/md3.o \
751 plugins/md3model/md5.o \
752 plugins/md3model/mdc.o \
753 plugins/md3model/mdlimage.o \
754 plugins/md3model/mdl.o \
755 plugins/md3model/plugin.o \
757 $(INSTALLDIR)/modules/model.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
758 $(INSTALLDIR)/modules/model.$(DLL): \
759 plugins/model/model.o \
760 plugins/model/plugin.o \
763 $(INSTALLDIR)/modules/shaders.$(DLL): LIBS_EXTRA := $(LIBS_GLIB)
764 $(INSTALLDIR)/modules/shaders.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) -Ilibs -Iinclude
765 $(INSTALLDIR)/modules/shaders.$(DLL): \
766 plugins/shaders/plugin.o \
767 plugins/shaders/shaders.o \
769 $(INSTALLDIR)/modules/vfspk3.$(DLL): LIBS_EXTRA := $(LIBS_GLIB)
770 $(INSTALLDIR)/modules/vfspk3.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) -Ilibs -Iinclude
771 $(INSTALLDIR)/modules/vfspk3.$(DLL): \
772 plugins/vfspk3/archive.o \
773 plugins/vfspk3/vfs.o \
774 plugins/vfspk3/vfspk3.o \
776 $(INSTALLDIR)/plugins/bobtoolz.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
777 $(INSTALLDIR)/plugins/bobtoolz.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
778 $(INSTALLDIR)/plugins/bobtoolz.$(DLL): \
779 contrib/bobtoolz/bobToolz-GTK.o \
780 contrib/bobtoolz/bsploader.o \
781 contrib/bobtoolz/cportals.o \
782 contrib/bobtoolz/DBobView.o \
783 contrib/bobtoolz/DBrush.o \
784 contrib/bobtoolz/DEntity.o \
785 contrib/bobtoolz/DEPair.o \
786 contrib/bobtoolz/dialogs/dialogs-gtk.o \
787 contrib/bobtoolz/DMap.o \
788 contrib/bobtoolz/DPatch.o \
789 contrib/bobtoolz/DPlane.o \
790 contrib/bobtoolz/DPoint.o \
791 contrib/bobtoolz/DShape.o \
792 contrib/bobtoolz/DTrainDrawer.o \
793 contrib/bobtoolz/DTreePlanter.o \
794 contrib/bobtoolz/DVisDrawer.o \
795 contrib/bobtoolz/DWinding.o \
796 contrib/bobtoolz/funchandlers-GTK.o \
797 contrib/bobtoolz/lists.o \
798 contrib/bobtoolz/misc.o \
799 contrib/bobtoolz/ScriptParser.o \
800 contrib/bobtoolz/shapes.o \
801 contrib/bobtoolz/visfind.o \
806 $(INSTALLDIR)/plugins/brushexport.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
807 $(INSTALLDIR)/plugins/brushexport.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
808 $(INSTALLDIR)/plugins/brushexport.$(DLL): \
809 contrib/brushexport/callbacks.o \
810 contrib/brushexport/export.o \
811 contrib/brushexport/interface.o \
812 contrib/brushexport/plugin.o \
813 contrib/brushexport/support.o \
815 $(INSTALLDIR)/plugins/prtview.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
816 $(INSTALLDIR)/plugins/prtview.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
817 $(INSTALLDIR)/plugins/prtview.$(DLL): \
818 contrib/prtview/AboutDialog.o \
819 contrib/prtview/ConfigDialog.o \
820 contrib/prtview/LoadPortalFileDialog.o \
821 contrib/prtview/portals.o \
822 contrib/prtview/prtview.o \
825 $(INSTALLDIR)/plugins/shaderplug.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK) $(LIBS_XML)
826 $(INSTALLDIR)/plugins/shaderplug.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) $(CPPFLAGS_XML) -Ilibs -Iinclude
827 $(INSTALLDIR)/plugins/shaderplug.$(DLL): \
828 contrib/shaderplug/shaderplug.o \
831 $(INSTALLDIR)/plugins/sunplug.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
832 $(INSTALLDIR)/plugins/sunplug.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
833 $(INSTALLDIR)/plugins/sunplug.$(DLL): \
834 contrib/sunplug/sunplug.o \
836 $(INSTALLDIR)/qdata3.$(EXE): LIBS_EXTRA := $(LIBS_XML)
837 $(INSTALLDIR)/qdata3.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) -Itools/quake2/common -Ilibs -Iinclude
838 $(INSTALLDIR)/qdata3.$(EXE): \
839 tools/quake2/common/bspfile.o \
840 tools/quake2/common/cmdlib.o \
841 tools/quake2/common/inout.o \
842 tools/quake2/common/l3dslib.o \
843 tools/quake2/common/lbmlib.o \
844 tools/quake2/common/mathlib.o \
845 tools/quake2/common/md4.o \
846 tools/quake2/common/path_init.o \
847 tools/quake2/common/polylib.o \
848 tools/quake2/common/scriplib.o \
849 tools/quake2/common/threads.o \
850 tools/quake2/common/trilib.o \
851 tools/quake2/qdata/images.o \
852 tools/quake2/qdata/models.o \
853 tools/quake2/qdata/qdata.o \
854 tools/quake2/qdata/sprites.o \
855 tools/quake2/qdata/tables.o \
856 tools/quake2/qdata/video.o \
858 $(if $(findstring $(OS),Win32),icons/qdata3.o,) \
860 $(INSTALLDIR)/q2map.$(EXE): LIBS_EXTRA := $(LIBS_XML)
861 $(INSTALLDIR)/q2map.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) -Itools/quake2/common -Ilibs -Iinclude
862 $(INSTALLDIR)/q2map.$(EXE): \
863 tools/quake2/common/bspfile.o \
864 tools/quake2/common/cmdlib.o \
865 tools/quake2/common/inout.o \
866 tools/quake2/common/l3dslib.o \
867 tools/quake2/common/lbmlib.o \
868 tools/quake2/common/mathlib.o \
869 tools/quake2/common/md4.o \
870 tools/quake2/common/path_init.o \
871 tools/quake2/common/polylib.o \
872 tools/quake2/common/scriplib.o \
873 tools/quake2/common/threads.o \
874 tools/quake2/common/trilib.o \
875 tools/quake2/q2map/brushbsp.o \
876 tools/quake2/q2map/csg.o \
877 tools/quake2/q2map/faces.o \
878 tools/quake2/q2map/flow.o \
879 tools/quake2/q2map/glfile.o \
880 tools/quake2/q2map/leakfile.o \
881 tools/quake2/q2map/lightmap.o \
882 tools/quake2/q2map/main.o \
883 tools/quake2/q2map/map.o \
884 tools/quake2/q2map/nodraw.o \
885 tools/quake2/q2map/patches.o \
886 tools/quake2/q2map/portals.o \
887 tools/quake2/q2map/prtfile.o \
888 tools/quake2/q2map/qbsp.o \
889 tools/quake2/q2map/qrad.o \
890 tools/quake2/q2map/qvis.o \
891 tools/quake2/q2map/textures.o \
892 tools/quake2/q2map/trace.o \
893 tools/quake2/q2map/tree.o \
894 tools/quake2/q2map/writebsp.o \
896 $(if $(findstring $(OS),Win32),icons/q2map.o,) \
898 $(INSTALLDIR)/plugins/ufoaiplug.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
899 $(INSTALLDIR)/plugins/ufoaiplug.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
900 $(INSTALLDIR)/plugins/ufoaiplug.$(DLL): \
901 contrib/ufoaiplug/ufoai_filters.o \
902 contrib/ufoaiplug/ufoai_gtk.o \
903 contrib/ufoaiplug/ufoai_level.o \
904 contrib/ufoaiplug/ufoai.o \
906 #$(INSTALLDIR)/plugins/bkgrnd2d.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
907 #$(INSTALLDIR)/plugins/bkgrnd2d.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
908 #$(INSTALLDIR)/plugins/bkgrnd2d.$(DLL): \
909 # contrib/bkgrnd2d/bkgrnd2d.o \
910 # contrib/bkgrnd2d/dialog.o \
911 # contrib/bkgrnd2d/plugin.o \
913 $(INSTALLDIR)/heretic2/h2data.$(EXE): LIBS_EXTRA := $(LIBS_XML)
914 $(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
915 $(INSTALLDIR)/heretic2/h2data.$(EXE): \
916 tools/quake2/qdata_heretic2/common/bspfile.o \
917 tools/quake2/qdata_heretic2/common/cmdlib.o \
918 tools/quake2/qdata_heretic2/common/inout.o \
919 tools/quake2/qdata_heretic2/common/l3dslib.o \
920 tools/quake2/qdata_heretic2/common/lbmlib.o \
921 tools/quake2/qdata_heretic2/common/mathlib.o \
922 tools/quake2/qdata_heretic2/common/md4.o \
923 tools/quake2/qdata_heretic2/common/path_init.o \
924 tools/quake2/qdata_heretic2/common/qfiles.o \
925 tools/quake2/qdata_heretic2/common/scriplib.o \
926 tools/quake2/qdata_heretic2/common/threads.o \
927 tools/quake2/qdata_heretic2/common/token.o \
928 tools/quake2/qdata_heretic2/common/trilib.o \
929 tools/quake2/qdata_heretic2/qcommon/reference.o \
930 tools/quake2/qdata_heretic2/qcommon/resourcemanager.o \
931 tools/quake2/qdata_heretic2/qcommon/skeletons.o \
932 tools/quake2/qdata_heretic2/animcomp.o \
933 tools/quake2/qdata_heretic2/book.o \
934 tools/quake2/qdata_heretic2/fmodels.o \
935 tools/quake2/qdata_heretic2/images.o \
936 tools/quake2/qdata_heretic2/jointed.o \
937 tools/quake2/qdata_heretic2/models.o \
938 tools/quake2/qdata_heretic2/pics.o \
939 tools/quake2/qdata_heretic2/qdata.o \
940 tools/quake2/qdata_heretic2/qd_skeletons.o \
941 tools/quake2/qdata_heretic2/sprites.o \
942 tools/quake2/qdata_heretic2/svdcmp.o \
943 tools/quake2/qdata_heretic2/tables.o \
944 tools/quake2/qdata_heretic2/tmix.o \
945 tools/quake2/qdata_heretic2/video.o \
947 $(if $(findstring $(OS),Win32),icons/h2data.o,) \
950 install-data: binaries
951 $(MKDIR) $(INSTALLDIR)/games
952 $(FIND) $(INSTALLDIR_BASE)/ -name .svn -exec $(RM_R) {} \; -prune
953 [ "$(OS)" != "Darwin" ] || $(CP_R) setup/data/osx/NetRadiant.app/* $(INSTALLDIR_BASE)/NetRadiant.app/
955 for GAME in games/*; do \
956 if [ -d "$$GAME/tools" ]; then \
959 for GAMEFILE in $$GAME/games/*.game; do \
960 $(CP) "$$GAMEFILE" $(INSTALLDIR)/games/; \
962 for GAMEDIR in $$GAME/*.game; do \
963 $(CP_R) "$$GAMEDIR" $(INSTALLDIR)/; \
966 $(ECHO) $(RADIANT_MINOR_VERSION) > $(INSTALLDIR)/RADIANT_MINOR
967 $(ECHO) $(RADIANT_MAJOR_VERSION) > $(INSTALLDIR)/RADIANT_MAJOR
968 $(CP_R) setup/data/tools/* $(INSTALLDIR)/
969 $(FIND) $(INSTALLDIR_BASE)/ -name .svn -exec $(RM_R) {} \; -prune
973 install-dll: binaries
974 MKDIR="$(MKDIR)" CP="$(CP)" CAT="$(CAT)" GTKDIR="$(GTKDIR)" WHICHDLL="$(WHICHDLL)" INSTALLDIR="$(INSTALLDIR)" $(SH) install-dlls.sh
977 install-dll: binaries
978 CP="$(CP)" OTOOL="$(OTOOL)" INSTALLDIR="$(INSTALLDIR)" $(SH) install-dylibs.sh
980 install-dll: binaries
981 @$(ECHO) No DLL inclusion implemented for this target.
985 -include $(shell find . -name \*.d)