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
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 -fno-strict-aliasing
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/X11R6/lib
188 #LDFLAGS_COMMON += -L/sw/lib -L/usr/lib -L/usr/X11R6/lib
189 LDFLAGS_DLL += -dynamiclib -ldl
196 CPPFLAGS_COMMON += -DMACVERSION="$(MACVERSION)"
197 # workaround for weird prints
198 ECHO_NOLF = /bin/echo -n
200 # workaround: http://developer.apple.com/qa/qa2007/qa1567.html
201 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
202 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
203 # workaround: we have no "ldd" for OS X, so...
207 INSTALLDIR := $(INSTALLDIR_BASE)/NetRadiant.app/Contents/MacOS/install
210 $(error Unsupported build OS: $(OS))
216 RADIANT_VERSION = 1.5.0n
217 RADIANT_MAJOR_VERSION = 5
218 RADIANT_MINOR_VERSION = 0
219 Q3MAP_VERSION = 2.5.17n
221 # Executable extension
222 RADIANT_EXECUTABLE := $(EXE)
224 GIT_VERSION := $(shell $(GIT) rev-parse --short HEAD $(STDERR_TO_DEVNULL))
225 ifneq ($(GIT_VERSION),)
226 RADIANT_VERSION := $(RADIANT_VERSION)-git-$(GIT_VERSION)
227 Q3MAP_VERSION := $(Q3MAP_VERSION)-git-$(GIT_VERSION)
230 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)\""
239 .PHONY: dependencies-check
240 ifeq ($(findstring $(DEPENDENCIES_CHECK),off),off)
242 @$(ECHO) dependencies checking disabled, good luck...
246 @if [ x"$(DEPENDENCIES_CHECK)" = x"verbose" ]; then set -x; fi; \
250 $(ECHO_NOLF) "Checking for $$2 ($$1)... "; \
251 $$2 --help $(TO_DEVNULL); \
252 if [ $$? != 127 ]; then \
255 $(ECHO) "not found, please install it or set PATH right!"; \
256 $(ECHO) "To see the failed commands, set DEPENDENCIES_CHECK=verbose"; \
257 $(ECHO) "To proceed anyway, set DEPENDENCIES_CHECK=off"; \
261 $(ECHO) checking that the build tools exist; \
262 checkbinary "bash (or another shell)" "$(SH)"; \
263 checkbinary coreutils "$(ECHO)"; \
264 checkbinary coreutils "$(ECHO_NOLF)"; \
265 checkbinary coreutils "$(CAT)"; \
266 checkbinary coreutils "$(MKDIR)"; \
267 checkbinary coreutils "$(CP)"; \
268 checkbinary coreutils "$(CP_R)"; \
269 checkbinary coreutils "$(RM)"; \
270 checkbinary coreutils "$(RM_R)"; \
271 checkbinary coreutils "$(ECHO) test $(TEE_STDERR)"; \
272 checkbinary sed "$(SED)"; \
273 checkbinary findutils "$(FIND)"; \
274 checkbinary diff "$(DIFF)"; \
275 checkbinary gcc "$(CC)"; \
276 checkbinary g++ "$(CXX)"; \
277 checkbinary binutils "$(RANLIB)"; \
278 checkbinary binutils "$(AR)"; \
279 checkbinary pkg-config "$(PKGCONFIG)"; \
280 [ "$(OS)" = "Win32" ] && checkbinary mingw32 "$(WINDRES)"; \
281 [ -n "$(LDD)" ] && checkbinary libc6 "$(LDD)"; \
282 [ -n "$(OTOOL)" ] && checkbinary xcode "$(OTOOL)"; \
283 [ "$$failed" = "0" ] && $(ECHO) All required tools have been found!
285 @if [ x"$(DEPENDENCIES_CHECK)" = x"verbose" ]; then set -x; fi; \
289 $(ECHO_NOLF) "Checking for $$2 ($$1)... "; \
291 $(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) && \
292 $(CXX) conftest.o $(LDFLAGS) $(LDFLAGS_COMMON) $$5 $(LIBS_COMMON) $(LIBS) -o conftest $(TO_DEVNULL); \
294 $(RM) conftest conftest.o conftest.d; \
297 $(RM) conftest conftest.o conftest.d; \
298 $(ECHO) "not found, please install it or set PKG_CONFIG_PATH right!"; \
299 $(ECHO) "To see the failed commands, set DEPENDENCIES_CHECK=verbose"; \
300 $(ECHO) "To proceed anyway, set DEPENDENCIES_CHECK=off"; \
304 $(ECHO) checking that the dependencies exist; \
305 checkheader libglib2.0-dev glib/gutils.h g_path_is_absolute "$(CPPFLAGS_GLIB)" "$(LIBS_GLIB)"; \
306 checkheader libxml2-dev libxml/xpath.h xmlXPathInit "$(CPPFLAGS_XML)" "$(LIBS_XML)"; \
307 checkheader libpng12-dev png.h png_create_read_struct "$(CPPFLAGS_PNG)" "$(LIBS_PNG)"; \
308 checkheader "mesa-common-dev (or another OpenGL library)" GL/gl.h glClear "$(CPPFLAGS_GL)" "$(LIBS_GL)"; \
309 checkheader libgtk2.0-dev gtk/gtkdialog.h gtk_dialog_run "$(CPPFLAGS_GTK)" "$(LIBS_GTK)"; \
310 checkheader libgtkglext1-dev gtk/gtkglwidget.h gtk_widget_get_gl_context "$(CPPFLAGS_GTKGLEXT)" "$(LIBS_GTKGLEXT)"; \
311 [ "$(OS)" != "Win32" ] && checkheader libc6-dev dlfcn.h dlopen "$(CPPFLAGS_DL)" "$(LIBS_DL)"; \
312 checkheader zlib1g-dev zlib.h zlibVersion "$(CPPFLAGS_ZLIB)" "$(LIBS_ZLIB)"; \
313 [ "$$failed" = "0" ] && $(ECHO) All required libraries have been found!
319 $(INSTALLDIR)/heretic2/h2data.$(EXE) \
320 $(INSTALLDIR)/modules/archivepak.$(DLL) \
321 $(INSTALLDIR)/modules/archivewad.$(DLL) \
322 $(INSTALLDIR)/modules/archivezip.$(DLL) \
323 $(INSTALLDIR)/modules/entity.$(DLL) \
324 $(INSTALLDIR)/modules/image.$(DLL) \
325 $(INSTALLDIR)/modules/imagehl.$(DLL) \
326 $(INSTALLDIR)/modules/imagepng.$(DLL) \
327 $(INSTALLDIR)/modules/imageq2.$(DLL) \
328 $(INSTALLDIR)/modules/mapq3.$(DLL) \
329 $(INSTALLDIR)/modules/mapxml.$(DLL) \
330 $(INSTALLDIR)/modules/md3model.$(DLL) \
331 $(INSTALLDIR)/modules/model.$(DLL) \
332 $(INSTALLDIR)/modules/shaders.$(DLL) \
333 $(INSTALLDIR)/modules/vfspk3.$(DLL) \
334 $(INSTALLDIR)/plugins/bobtoolz.$(DLL) \
335 $(INSTALLDIR)/plugins/brushexport.$(DLL) \
336 $(INSTALLDIR)/plugins/prtview.$(DLL) \
337 $(INSTALLDIR)/plugins/shaderplug.$(DLL) \
338 $(INSTALLDIR)/plugins/sunplug.$(DLL) \
339 $(INSTALLDIR)/plugins/ufoaiplug.$(DLL) \
340 $(INSTALLDIR)/q2map.$(EXE) \
341 $(INSTALLDIR)/q3data.$(EXE) \
342 $(INSTALLDIR)/q3map2.$(EXE) \
343 $(INSTALLDIR)/qdata3.$(EXE) \
344 $(INSTALLDIR)/radiant.$(EXE) \
348 $(RM_R) $(INSTALLDIR_BASE)/
349 $(FIND) . \( -name \*.o -o -name \*.d -o -name \*.$(DLL) -o -name \*.$(A) -o -name \*.$(EXE) \) -exec $(RM) {} \;
353 file=$@; $(MKDIR) $${file%/*}
354 $(CXX) $^ $(LDFLAGS) $(LDFLAGS_COMMON) $(LDFLAGS_EXTRA) $(LIBS_EXTRA) $(LIBS_COMMON) $(LIBS) -o $@
355 [ -z "$(LDD)" ] || [ -z "`$(LDD) -r $@ $(STDERR_TO_STDOUT) $(STDOUT_TO_DEVNULL) $(TEE_STDERR)`" ] || { $(RM) $@; exit 1; }
362 file=$@; $(MKDIR) $${file%/*}
363 $(CXX) $^ $(LDFLAGS) $(LDFLAGS_COMMON) $(LDFLAGS_EXTRA) $(LDFLAGS_DLL) $(LIBS_EXTRA) $(LIBS_COMMON) $(LIBS) -shared -o $@
364 [ -z "$(LDD)" ] || [ -z "`$(LDD) -r $@ $(STDERR_TO_STDOUT) $(STDOUT_TO_DEVNULL) $(TEE_STDERR)`" ] || { $(RM) $@; exit 1; }
367 $(ECHO) '1 ICON "$<"' > $@
374 %.o: %.cpp $(if $(findstring $(DEPEND_ON_MAKEFILE),yes),$(wildcard Makefile*),)
375 $(CXX) $< $(CFLAGS) $(CXXFLAGS) $(CFLAGS_COMMON) $(CXXFLAGS_COMMON) $(CPPFLAGS_EXTRA) $(CPPFLAGS_COMMON) $(CPPFLAGS) $(TARGET_ARCH) -c -o $@
377 %.o: %.c $(if $(findstring $(DEPEND_ON_MAKEFILE),yes),$(wildcard Makefile*),)
378 $(CC) $< $(CFLAGS) $(CFLAGS_COMMON) $(CPPFLAGS_EXTRA) $(CPPFLAGS_COMMON) $(CPPFLAGS) $(TARGET_ARCH) -c -o $@
381 $(INSTALLDIR)/q3map2.$(EXE): LIBS_EXTRA := $(LIBS_XML) $(LIBS_GLIB) $(LIBS_PNG) $(LIBS_ZLIB)
382 $(INSTALLDIR)/q3map2.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) $(CPPFLAGS_GLIB) $(CPPFLAGS_PNG) -Itools/quake3/common -Ilibs -Iinclude
383 $(INSTALLDIR)/q3map2.$(EXE): \
384 tools/quake3/common/cmdlib.o \
385 tools/quake3/common/imagelib.o \
386 tools/quake3/common/inout.o \
387 tools/quake3/common/md4.o \
388 tools/quake3/common/mutex.o \
389 tools/quake3/common/polylib.o \
390 tools/quake3/common/scriplib.o \
391 tools/quake3/common/threads.o \
392 tools/quake3/common/unzip.o \
393 tools/quake3/common/vfs.o \
394 tools/quake3/q3map2/brush.o \
395 tools/quake3/q3map2/brush_primit.o \
396 tools/quake3/q3map2/bspfile_abstract.o \
397 tools/quake3/q3map2/bspfile_ibsp.o \
398 tools/quake3/q3map2/bspfile_rbsp.o \
399 tools/quake3/q3map2/bsp.o \
400 tools/quake3/q3map2/convert_ase.o \
401 tools/quake3/q3map2/convert_map.o \
402 tools/quake3/q3map2/decals.o \
403 tools/quake3/q3map2/facebsp.o \
404 tools/quake3/q3map2/fog.o \
405 tools/quake3/q3map2/image.o \
406 tools/quake3/q3map2/leakfile.o \
407 tools/quake3/q3map2/light_bounce.o \
408 tools/quake3/q3map2/lightmaps_ydnar.o \
409 tools/quake3/q3map2/light.o \
410 tools/quake3/q3map2/light_trace.o \
411 tools/quake3/q3map2/light_ydnar.o \
412 tools/quake3/q3map2/main.o \
413 tools/quake3/q3map2/map.o \
414 tools/quake3/q3map2/mesh.o \
415 tools/quake3/q3map2/model.o \
416 tools/quake3/q3map2/patch.o \
417 tools/quake3/q3map2/path_init.o \
418 tools/quake3/q3map2/portals.o \
419 tools/quake3/q3map2/prtfile.o \
420 tools/quake3/q3map2/shaders.o \
421 tools/quake3/q3map2/surface_extra.o \
422 tools/quake3/q3map2/surface_foliage.o \
423 tools/quake3/q3map2/surface_fur.o \
424 tools/quake3/q3map2/surface_meta.o \
425 tools/quake3/q3map2/surface.o \
426 tools/quake3/q3map2/tjunction.o \
427 tools/quake3/q3map2/tree.o \
428 tools/quake3/q3map2/visflow.o \
429 tools/quake3/q3map2/vis.o \
430 tools/quake3/q3map2/writebsp.o \
436 $(if $(findstring $(OS),Win32),icons/q3map2.o,) \
438 libmathlib.$(A): CPPFLAGS_EXTRA := -Ilibs
440 libs/mathlib/bbox.o \
441 libs/mathlib/line.o \
442 libs/mathlib/m4x4.o \
443 libs/mathlib/mathlib.o \
446 libl_net.$(A): CPPFLAGS_EXTRA := -Ilibs
449 $(if $(findstring $(OS),Win32),libs/l_net/l_net_wins.o,libs/l_net/l_net_berkley.o) \
451 libjpeg6.$(A): CPPFLAGS_EXTRA := -Ilibs/jpeg6 -Ilibs
453 libs/jpeg6/jcomapi.o \
454 libs/jpeg6/jdapimin.o \
455 libs/jpeg6/jdapistd.o \
456 libs/jpeg6/jdatasrc.o \
457 libs/jpeg6/jdcoefct.o \
458 libs/jpeg6/jdcolor.o \
459 libs/jpeg6/jddctmgr.o \
460 libs/jpeg6/jdhuff.o \
461 libs/jpeg6/jdinput.o \
462 libs/jpeg6/jdmainct.o \
463 libs/jpeg6/jdmarker.o \
464 libs/jpeg6/jdmaster.o \
465 libs/jpeg6/jdpostct.o \
466 libs/jpeg6/jdsample.o \
467 libs/jpeg6/jdtrans.o \
468 libs/jpeg6/jerror.o \
469 libs/jpeg6/jfdctflt.o \
470 libs/jpeg6/jidctflt.o \
471 libs/jpeg6/jmemmgr.o \
472 libs/jpeg6/jmemnobs.o \
473 libs/jpeg6/jpgload.o \
474 libs/jpeg6/jutils.o \
476 libpicomodel.$(A): CPPFLAGS_EXTRA := -Ilibs
478 libs/picomodel/lwo/clip.o \
479 libs/picomodel/lwo/envelope.o \
480 libs/picomodel/lwo/list.o \
481 libs/picomodel/lwo/lwio.o \
482 libs/picomodel/lwo/lwo2.o \
483 libs/picomodel/lwo/lwob.o \
484 libs/picomodel/lwo/pntspols.o \
485 libs/picomodel/lwo/surface.o \
486 libs/picomodel/lwo/vecmath.o \
487 libs/picomodel/lwo/vmap.o \
488 libs/picomodel/picointernal.o \
489 libs/picomodel/picomodel.o \
490 libs/picomodel/picomodules.o \
491 libs/picomodel/pm_3ds.o \
492 libs/picomodel/pm_ase.o \
493 libs/picomodel/pm_fm.o \
494 libs/picomodel/pm_lwo.o \
495 libs/picomodel/pm_md2.o \
496 libs/picomodel/pm_md3.o \
497 libs/picomodel/pm_mdc.o \
498 libs/picomodel/pm_ms3d.o \
499 libs/picomodel/pm_obj.o \
500 libs/picomodel/pm_terrain.o \
502 libddslib.$(A): CPPFLAGS_EXTRA := -Ilibs
504 libs/ddslib/ddslib.o \
506 $(INSTALLDIR)/q3data.$(EXE): LIBS_EXTRA := $(LIBS_XML) $(LIBS_GLIB) $(LIBS_ZLIB)
507 $(INSTALLDIR)/q3data.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) $(CPPFLAGS_GLIB) $(CPPFLAGS_ZLIB) -Itools/quake3/common -Ilibs -Iinclude
508 $(INSTALLDIR)/q3data.$(EXE): \
509 tools/quake3/common/aselib.o \
510 tools/quake3/common/bspfile.o \
511 tools/quake3/common/cmdlib.o \
512 tools/quake3/common/imagelib.o \
513 tools/quake3/common/inout.o \
514 tools/quake3/common/md4.o \
515 tools/quake3/common/scriplib.o \
516 tools/quake3/common/trilib.o \
517 tools/quake3/common/unzip.o \
518 tools/quake3/common/vfs.o \
519 tools/quake3/q3data/3dslib.o \
520 tools/quake3/q3data/compress.o \
521 tools/quake3/q3data/images.o \
522 tools/quake3/q3data/md3lib.o \
523 tools/quake3/q3data/models.o \
524 tools/quake3/q3data/p3dlib.o \
525 tools/quake3/q3data/polyset.o \
526 tools/quake3/q3data/q3data.o \
527 tools/quake3/q3data/stripper.o \
528 tools/quake3/q3data/video.o \
531 $(if $(findstring $(OS),Win32),icons/q3data.o,) \
533 $(INSTALLDIR)/radiant.$(EXE): LDFLAGS_EXTRA := $(MWINDOWS)
534 $(INSTALLDIR)/radiant.$(EXE): LIBS_EXTRA := $(LIBS_GL) $(LIBS_DL) $(LIBS_XML) $(LIBS_GLIB) $(LIBS_GTK) $(LIBS_GTKGLEXT) $(LIBS_ZLIB)
535 $(INSTALLDIR)/radiant.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_GL) $(CPPFLAGS_DL) $(CPPFLAGS_XML) $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) $(CPPFLAGS_GTKGLEXT) -Ilibs -Iinclude
536 $(INSTALLDIR)/radiant.$(EXE): \
538 radiant/brushmanip.o \
539 radiant/brushmodule.o \
540 radiant/brushnode.o \
542 radiant/brush_primit.o \
543 radiant/brushtokens.o \
546 radiant/camwindow.o \
547 radiant/clippertool.o \
552 radiant/eclass_def.o \
553 radiant/eclass_doom3.o \
554 radiant/eclass_fgd.o \
556 radiant/eclass_xml.o \
557 radiant/entityinspector.o \
558 radiant/entitylist.o \
560 radiant/environment.o \
563 radiant/filetypes.o \
565 radiant/findtexturedialog.o \
568 radiant/groupdialog.o \
573 radiant/mainframe.o \
576 $(if $(findstring $(OS),Win32),radiant/multimon.o,) \
578 radiant/nullmodel.o \
580 radiant/patchdialog.o \
581 radiant/patchmanip.o \
582 radiant/patchmodule.o \
584 radiant/pluginapi.o \
585 radiant/pluginmanager.o \
586 radiant/pluginmenu.o \
588 radiant/plugintoolbar.o \
590 radiant/preferencedictionary.o \
591 radiant/preferences.o \
594 radiant/referencecache.o \
596 radiant/renderstate.o \
597 radiant/scenegraph.o \
598 radiant/selection.o \
603 radiant/stacktrace.o \
604 radiant/surfacedialog.o \
607 radiant/texwindow.o \
609 radiant/treemodel.o \
615 radiant/windowobservers.o \
624 $(if $(findstring $(OS),Win32),icons/radiant.o,) \
626 libcmdlib.$(A): CPPFLAGS_EXTRA := -Ilibs
628 libs/cmdlib/cmdlib.o \
630 libprofile.$(A): CPPFLAGS_EXTRA := -Ilibs -Iinclude
632 libs/profile/file.o \
633 libs/profile/profile.o \
635 libgtkutil.$(A): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) $(CPPFLAGS_GTKGLEXT) -Ilibs -Iinclude
637 libs/gtkutil/accelerator.o \
638 libs/gtkutil/button.o \
639 libs/gtkutil/clipboard.o \
640 libs/gtkutil/closure.o \
641 libs/gtkutil/container.o \
642 libs/gtkutil/cursor.o \
643 libs/gtkutil/dialog.o \
644 libs/gtkutil/entry.o \
645 libs/gtkutil/filechooser.o \
646 libs/gtkutil/frame.o \
647 libs/gtkutil/glfont.o \
648 libs/gtkutil/glwidget.o \
649 libs/gtkutil/idledraw.o \
650 libs/gtkutil/image.o \
651 libs/gtkutil/menu.o \
652 libs/gtkutil/messagebox.o \
653 libs/gtkutil/nonmodal.o \
654 libs/gtkutil/paned.o \
655 libs/gtkutil/pointer.o \
656 libs/gtkutil/toolbar.o \
657 libs/gtkutil/widget.o \
658 libs/gtkutil/window.o \
659 libs/gtkutil/xorrectangle.o \
661 libxmllib.$(A): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) $(CPPFLAGS_GLIB) -Ilibs -Iinclude
664 libs/xml/xmlelement.o \
665 libs/xml/xmlparser.o \
666 libs/xml/xmltextags.o \
667 libs/xml/xmlwriter.o \
669 $(INSTALLDIR)/modules/archivezip.$(DLL): LIBS_EXTRA := $(LIBS_ZLIB)
670 $(INSTALLDIR)/modules/archivezip.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_ZLIB) -Ilibs -Iinclude
671 $(INSTALLDIR)/modules/archivezip.$(DLL): \
672 plugins/archivezip/archive.o \
673 plugins/archivezip/pkzip.o \
674 plugins/archivezip/plugin.o \
675 plugins/archivezip/zlibstream.o \
677 $(INSTALLDIR)/modules/archivewad.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
678 $(INSTALLDIR)/modules/archivewad.$(DLL): \
679 plugins/archivewad/archive.o \
680 plugins/archivewad/plugin.o \
681 plugins/archivewad/wad.o \
683 $(INSTALLDIR)/modules/archivepak.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
684 $(INSTALLDIR)/modules/archivepak.$(DLL): \
685 plugins/archivepak/archive.o \
686 plugins/archivepak/pak.o \
687 plugins/archivepak/plugin.o \
689 $(INSTALLDIR)/modules/entity.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
690 $(INSTALLDIR)/modules/entity.$(DLL): \
691 plugins/entity/angle.o \
692 plugins/entity/angles.o \
693 plugins/entity/colour.o \
694 plugins/entity/doom3group.o \
695 plugins/entity/eclassmodel.o \
696 plugins/entity/entity.o \
697 plugins/entity/filters.o \
698 plugins/entity/generic.o \
699 plugins/entity/group.o \
700 plugins/entity/light.o \
701 plugins/entity/miscmodel.o \
702 plugins/entity/model.o \
703 plugins/entity/modelskinkey.o \
704 plugins/entity/namedentity.o \
705 plugins/entity/origin.o \
706 plugins/entity/plugin.o \
707 plugins/entity/rotation.o \
708 plugins/entity/scale.o \
709 plugins/entity/skincache.o \
710 plugins/entity/targetable.o \
712 $(INSTALLDIR)/modules/image.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
713 $(INSTALLDIR)/modules/image.$(DLL): \
714 plugins/image/bmp.o \
715 plugins/image/dds.o \
716 plugins/image/image.o \
717 plugins/image/jpeg.o \
718 plugins/image/pcx.o \
719 plugins/image/tga.o \
723 $(INSTALLDIR)/modules/imageq2.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
724 $(INSTALLDIR)/modules/imageq2.$(DLL): \
725 plugins/imageq2/imageq2.o \
726 plugins/imageq2/wal32.o \
727 plugins/imageq2/wal.o \
729 $(INSTALLDIR)/modules/imagehl.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
730 $(INSTALLDIR)/modules/imagehl.$(DLL): \
731 plugins/imagehl/hlw.o \
732 plugins/imagehl/imagehl.o \
733 plugins/imagehl/mip.o \
734 plugins/imagehl/sprite.o \
736 $(INSTALLDIR)/modules/imagepng.$(DLL): LIBS_EXTRA := $(LIBS_PNG)
737 $(INSTALLDIR)/modules/imagepng.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_PNG) -Ilibs -Iinclude
738 $(INSTALLDIR)/modules/imagepng.$(DLL): \
739 plugins/imagepng/plugin.o \
741 $(INSTALLDIR)/modules/mapq3.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
742 $(INSTALLDIR)/modules/mapq3.$(DLL): \
743 plugins/mapq3/parse.o \
744 plugins/mapq3/plugin.o \
745 plugins/mapq3/write.o \
747 $(INSTALLDIR)/modules/mapxml.$(DLL): LIBS_EXTRA := $(LIBS_XML) $(LIBS_GLIB)
748 $(INSTALLDIR)/modules/mapxml.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) $(CPPFLAGS_GLIB) -Ilibs -Iinclude
749 $(INSTALLDIR)/modules/mapxml.$(DLL): \
750 plugins/mapxml/plugin.o \
751 plugins/mapxml/xmlparse.o \
752 plugins/mapxml/xmlwrite.o \
754 $(INSTALLDIR)/modules/md3model.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
755 $(INSTALLDIR)/modules/md3model.$(DLL): \
756 plugins/md3model/md2.o \
757 plugins/md3model/md3.o \
758 plugins/md3model/md5.o \
759 plugins/md3model/mdc.o \
760 plugins/md3model/mdlimage.o \
761 plugins/md3model/mdl.o \
762 plugins/md3model/plugin.o \
764 $(INSTALLDIR)/modules/model.$(DLL): CPPFLAGS_EXTRA := -Ilibs -Iinclude
765 $(INSTALLDIR)/modules/model.$(DLL): \
766 plugins/model/model.o \
767 plugins/model/plugin.o \
770 $(INSTALLDIR)/modules/shaders.$(DLL): LIBS_EXTRA := $(LIBS_GLIB)
771 $(INSTALLDIR)/modules/shaders.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) -Ilibs -Iinclude
772 $(INSTALLDIR)/modules/shaders.$(DLL): \
773 plugins/shaders/plugin.o \
774 plugins/shaders/shaders.o \
776 $(INSTALLDIR)/modules/vfspk3.$(DLL): LIBS_EXTRA := $(LIBS_GLIB)
777 $(INSTALLDIR)/modules/vfspk3.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) -Ilibs -Iinclude
778 $(INSTALLDIR)/modules/vfspk3.$(DLL): \
779 plugins/vfspk3/archive.o \
780 plugins/vfspk3/vfs.o \
781 plugins/vfspk3/vfspk3.o \
783 $(INSTALLDIR)/plugins/bobtoolz.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
784 $(INSTALLDIR)/plugins/bobtoolz.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
785 $(INSTALLDIR)/plugins/bobtoolz.$(DLL): \
786 contrib/bobtoolz/bobToolz-GTK.o \
787 contrib/bobtoolz/bsploader.o \
788 contrib/bobtoolz/cportals.o \
789 contrib/bobtoolz/DBobView.o \
790 contrib/bobtoolz/DBrush.o \
791 contrib/bobtoolz/DEntity.o \
792 contrib/bobtoolz/DEPair.o \
793 contrib/bobtoolz/dialogs/dialogs-gtk.o \
794 contrib/bobtoolz/DMap.o \
795 contrib/bobtoolz/DPatch.o \
796 contrib/bobtoolz/DPlane.o \
797 contrib/bobtoolz/DPoint.o \
798 contrib/bobtoolz/DShape.o \
799 contrib/bobtoolz/DTrainDrawer.o \
800 contrib/bobtoolz/DTreePlanter.o \
801 contrib/bobtoolz/DVisDrawer.o \
802 contrib/bobtoolz/DWinding.o \
803 contrib/bobtoolz/funchandlers-GTK.o \
804 contrib/bobtoolz/lists.o \
805 contrib/bobtoolz/misc.o \
806 contrib/bobtoolz/ScriptParser.o \
807 contrib/bobtoolz/shapes.o \
808 contrib/bobtoolz/visfind.o \
813 $(INSTALLDIR)/plugins/brushexport.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
814 $(INSTALLDIR)/plugins/brushexport.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
815 $(INSTALLDIR)/plugins/brushexport.$(DLL): \
816 contrib/brushexport/callbacks.o \
817 contrib/brushexport/export.o \
818 contrib/brushexport/interface.o \
819 contrib/brushexport/plugin.o \
820 contrib/brushexport/support.o \
822 $(INSTALLDIR)/plugins/prtview.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
823 $(INSTALLDIR)/plugins/prtview.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
824 $(INSTALLDIR)/plugins/prtview.$(DLL): \
825 contrib/prtview/AboutDialog.o \
826 contrib/prtview/ConfigDialog.o \
827 contrib/prtview/LoadPortalFileDialog.o \
828 contrib/prtview/portals.o \
829 contrib/prtview/prtview.o \
832 $(INSTALLDIR)/plugins/shaderplug.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK) $(LIBS_XML)
833 $(INSTALLDIR)/plugins/shaderplug.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) $(CPPFLAGS_XML) -Ilibs -Iinclude
834 $(INSTALLDIR)/plugins/shaderplug.$(DLL): \
835 contrib/shaderplug/shaderplug.o \
838 $(INSTALLDIR)/plugins/sunplug.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
839 $(INSTALLDIR)/plugins/sunplug.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
840 $(INSTALLDIR)/plugins/sunplug.$(DLL): \
841 contrib/sunplug/sunplug.o \
843 $(INSTALLDIR)/qdata3.$(EXE): LIBS_EXTRA := $(LIBS_XML)
844 $(INSTALLDIR)/qdata3.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) -Itools/quake2/common -Ilibs -Iinclude
845 $(INSTALLDIR)/qdata3.$(EXE): \
846 tools/quake2/common/bspfile.o \
847 tools/quake2/common/cmdlib.o \
848 tools/quake2/common/inout.o \
849 tools/quake2/common/l3dslib.o \
850 tools/quake2/common/lbmlib.o \
851 tools/quake2/common/mathlib.o \
852 tools/quake2/common/md4.o \
853 tools/quake2/common/path_init.o \
854 tools/quake2/common/polylib.o \
855 tools/quake2/common/scriplib.o \
856 tools/quake2/common/threads.o \
857 tools/quake2/common/trilib.o \
858 tools/quake2/qdata/images.o \
859 tools/quake2/qdata/models.o \
860 tools/quake2/qdata/qdata.o \
861 tools/quake2/qdata/sprites.o \
862 tools/quake2/qdata/tables.o \
863 tools/quake2/qdata/video.o \
865 $(if $(findstring $(OS),Win32),icons/qdata3.o,) \
867 $(INSTALLDIR)/q2map.$(EXE): LIBS_EXTRA := $(LIBS_XML)
868 $(INSTALLDIR)/q2map.$(EXE): CPPFLAGS_EXTRA := $(CPPFLAGS_XML) -Itools/quake2/common -Ilibs -Iinclude
869 $(INSTALLDIR)/q2map.$(EXE): \
870 tools/quake2/common/bspfile.o \
871 tools/quake2/common/cmdlib.o \
872 tools/quake2/common/inout.o \
873 tools/quake2/common/l3dslib.o \
874 tools/quake2/common/lbmlib.o \
875 tools/quake2/common/mathlib.o \
876 tools/quake2/common/md4.o \
877 tools/quake2/common/path_init.o \
878 tools/quake2/common/polylib.o \
879 tools/quake2/common/scriplib.o \
880 tools/quake2/common/threads.o \
881 tools/quake2/common/trilib.o \
882 tools/quake2/q2map/brushbsp.o \
883 tools/quake2/q2map/csg.o \
884 tools/quake2/q2map/faces.o \
885 tools/quake2/q2map/flow.o \
886 tools/quake2/q2map/glfile.o \
887 tools/quake2/q2map/leakfile.o \
888 tools/quake2/q2map/lightmap.o \
889 tools/quake2/q2map/main.o \
890 tools/quake2/q2map/map.o \
891 tools/quake2/q2map/nodraw.o \
892 tools/quake2/q2map/patches.o \
893 tools/quake2/q2map/portals.o \
894 tools/quake2/q2map/prtfile.o \
895 tools/quake2/q2map/qbsp.o \
896 tools/quake2/q2map/qrad.o \
897 tools/quake2/q2map/qvis.o \
898 tools/quake2/q2map/textures.o \
899 tools/quake2/q2map/trace.o \
900 tools/quake2/q2map/tree.o \
901 tools/quake2/q2map/writebsp.o \
903 $(if $(findstring $(OS),Win32),icons/q2map.o,) \
905 $(INSTALLDIR)/plugins/ufoaiplug.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
906 $(INSTALLDIR)/plugins/ufoaiplug.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
907 $(INSTALLDIR)/plugins/ufoaiplug.$(DLL): \
908 contrib/ufoaiplug/ufoai_filters.o \
909 contrib/ufoaiplug/ufoai_gtk.o \
910 contrib/ufoaiplug/ufoai_level.o \
911 contrib/ufoaiplug/ufoai.o \
913 $(INSTALLDIR)/plugins/bkgrnd2d.$(DLL): LIBS_EXTRA := $(LIBS_GLIB) $(LIBS_GTK)
914 $(INSTALLDIR)/plugins/bkgrnd2d.$(DLL): CPPFLAGS_EXTRA := $(CPPFLAGS_GLIB) $(CPPFLAGS_GTK) -Ilibs -Iinclude
915 $(INSTALLDIR)/plugins/bkgrnd2d.$(DLL): \
916 contrib/bkgrnd2d/bkgrnd2d.o \
917 contrib/bkgrnd2d/dialog.o \
918 contrib/bkgrnd2d/plugin.o \
920 $(INSTALLDIR)/heretic2/h2data.$(EXE): LIBS_EXTRA := $(LIBS_XML)
921 $(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
922 $(INSTALLDIR)/heretic2/h2data.$(EXE): \
923 tools/quake2/qdata_heretic2/common/bspfile.o \
924 tools/quake2/qdata_heretic2/common/cmdlib.o \
925 tools/quake2/qdata_heretic2/common/inout.o \
926 tools/quake2/qdata_heretic2/common/l3dslib.o \
927 tools/quake2/qdata_heretic2/common/lbmlib.o \
928 tools/quake2/qdata_heretic2/common/mathlib.o \
929 tools/quake2/qdata_heretic2/common/md4.o \
930 tools/quake2/qdata_heretic2/common/path_init.o \
931 tools/quake2/qdata_heretic2/common/qfiles.o \
932 tools/quake2/qdata_heretic2/common/scriplib.o \
933 tools/quake2/qdata_heretic2/common/threads.o \
934 tools/quake2/qdata_heretic2/common/token.o \
935 tools/quake2/qdata_heretic2/common/trilib.o \
936 tools/quake2/qdata_heretic2/qcommon/reference.o \
937 tools/quake2/qdata_heretic2/qcommon/resourcemanager.o \
938 tools/quake2/qdata_heretic2/qcommon/skeletons.o \
939 tools/quake2/qdata_heretic2/animcomp.o \
940 tools/quake2/qdata_heretic2/book.o \
941 tools/quake2/qdata_heretic2/fmodels.o \
942 tools/quake2/qdata_heretic2/images.o \
943 tools/quake2/qdata_heretic2/jointed.o \
944 tools/quake2/qdata_heretic2/models.o \
945 tools/quake2/qdata_heretic2/pics.o \
946 tools/quake2/qdata_heretic2/qdata.o \
947 tools/quake2/qdata_heretic2/qd_skeletons.o \
948 tools/quake2/qdata_heretic2/sprites.o \
949 tools/quake2/qdata_heretic2/svdcmp.o \
950 tools/quake2/qdata_heretic2/tables.o \
951 tools/quake2/qdata_heretic2/tmix.o \
952 tools/quake2/qdata_heretic2/video.o \
954 $(if $(findstring $(OS),Win32),icons/h2data.o,) \
957 install-data: binaries
958 $(MKDIR) $(INSTALLDIR)/games
959 $(FIND) $(INSTALLDIR_BASE)/ -name .svn -exec $(RM_R) {} \; -prune
960 [ "$(OS)" != "Darwin" ] || $(CP_R) setup/data/osx/NetRadiant.app/* $(INSTALLDIR_BASE)/NetRadiant.app/
962 for GAME in games/*; do \
963 if [ "$$GAME" = "games/*" ]; then \
964 $(ECHO) "Game packs not found, please run"; \
965 $(ECHO) " ./download-gamepacks.sh"; \
966 $(ECHO) "and then try again!"; \
968 CP="$(CP)" CP_R="$(CP_R)" $(SH) install-gamepack.sh "$$GAME" "$(INSTALLDIR)"; \
971 $(ECHO) $(RADIANT_MINOR_VERSION) > $(INSTALLDIR)/RADIANT_MINOR
972 $(ECHO) $(RADIANT_MAJOR_VERSION) > $(INSTALLDIR)/RADIANT_MAJOR
973 $(CP_R) setup/data/tools/* $(INSTALLDIR)/
974 $(MKDIR) $(INSTALLDIR)/docs
975 $(CP_R) docs/* $(INSTALLDIR)/docs/
976 $(FIND) $(INSTALLDIR_BASE)/ -name .svn -exec $(RM_R) {} \; -prune
980 install-dll: binaries
981 MKDIR="$(MKDIR)" CP="$(CP)" CAT="$(CAT)" GTKDIR="$(GTKDIR)" WHICHDLL="$(WHICHDLL)" INSTALLDIR="$(INSTALLDIR)" $(SH) install-dlls.sh
984 install-dll: binaries
985 EXE="$(EXE)" MACLIBDIR="$(MACLIBDIR)" CP="$(CP)" OTOOL="$(OTOOL)" INSTALLDIR="$(INSTALLDIR)" $(SH) install-dylibs.sh
987 install-dll: binaries
988 @$(ECHO) No DLL inclusion implemented for this target.
992 -include $(shell find . -name \*.d)