slightly closer to doze builds
[feisty_meow.git] / scripts / clam / cpp / rules.def
1 ###############################################################################
2
3 # CLAM System default rules and targets for C++ compilation.
4
5 # This file composite macros and rules for creating compilation objects
6 # (such as library archives, object files, executable programs, and others).
7
8 # This file should be included in the user Makefile after the variables
9 # have been initialized appropriately for the particular project being
10 # compiled.  The user targets should be placed after the include
11 # directive that specifies this file.
12
13 ###############################################################################
14
15 # This section manipulates variable values to prepare them for their use
16 # in the standard CLAM support.
17
18 # see if they have got the clean flag set.  if so, we will not build anything.
19 ifneq "$(CLEAN)" ""
20   NO_COMPILE = t
21 endif
22 # also omit version compilation and some logging when not compiling.
23 ifneq "$(NO_COMPILE)" ""
24   QUIET = t
25 endif
26
27 # implement special bits for gnu on unix.
28 ifeq "$(COMPILER)" "GNU_LINUX"
29   ifneq "$(USE_XWIN)" ""
30     DEFINITIONS += __XWINDOWS__ __X__
31     LIBS_USED += Xm Xt X11 Xft Xp 
32 #need to separate out with a USE_MOTIF kind of thing.
33 LIBS_USED += Xmu
34     HEADER_SEARCH_PATH += /usr/include/X11 /usr/X11R6/include /usr/include/g++
35     LIBRARY_SEARCH_PATH += /usr/X11R6/lib 
36   endif
37
38   ifneq "$(USE_SSL)" ""
39     LIBS_USED += ssl crypto
40   endif
41   
42   ifneq "$(USE_WXWIDGETS)" ""
43     DEFINITIONS += __WXWIDGETS__ 
44     use_unicode =
45     ifneq "$(findstring UNICODE, $(DEFINITIONS))" ""
46       use_unicode = true
47     endif
48
49     # decide whether to turn on the unicode flag or not.
50     ifneq "$(use_unicode)" ""
51       DEFINITIONS += wxUSE_UNICODE
52       UNICODE_FLAG_ADD = --unicode=yes
53     else
54       UNICODE_FLAG_ADD = --unicode=no
55     endif
56     # could add for debugging: --debug=yes 
57     COMPILER_FLAGS += $(shell wx-config --cxxflags $(UNICODE_FLAG_ADD) )
58
59     LOAD_FLAG_PREFIX += $(shell wx-config --libs $(UNICODE_FLAG_ADD) )
60   endif
61
62   ifneq "$(USE_CURL)" ""
63     COMPILER_FLAGS += `curl-config --cflags`
64     LOAD_FLAG_SUFFIX += `curl-config --libs`
65   endif
66 endif
67
68 # some special code for gnu compiler on windows.
69 ifeq "$(COMPILER)" "GNU_WINDOWS"
70
71   ifneq "$(USE_SSL)" ""
72     LIBS_USED += ssl crypto
73   endif
74   
75   ifneq "$(USE_WXWIDGETS)" ""
76     DEFINITIONS += __WXWIDGETS__ 
77     use_unicode =
78     ifneq "$(findstring UNICODE, $(DEFINITIONS))" ""
79       use_unicode = true
80     endif
81
82     # decide whether to turn on the unicode flag or not.
83     ifneq "$(use_unicode)" ""
84       DEFINITIONS += wxUSE_UNICODE
85       UNICODE_FLAG_ADD = --unicode=yes
86     else
87       UNICODE_FLAG_ADD = --unicode=no
88     endif
89     # could add for debugging: --debug=yes 
90     COMPILER_FLAGS += $(shell wx-config --cxxflags $(UNICODE_FLAG_ADD) )
91
92     LOAD_FLAG_PREFIX += $(shell wx-config --libs $(UNICODE_FLAG_ADD) )
93   endif
94
95 #hmmm: LOAD_FLAG_PREFIX += -lwsock32 -lmswsock -shared
96
97   ifneq "$(USE_CURL)" ""
98     COMPILER_FLAGS += `curl-config --cflags`
99     LOAD_FLAG_SUFFIX += `curl-config --libs`
100   endif
101
102 endif
103
104 ###############################################################################
105
106 ifeq "$(COMPILER)" "GNU_DARWIN"
107   # finds the crypto code on macos.
108   HEADER_SEARCH_PATH += /usr/local/opt/openssl/include
109   LIBRARY_SEARCH_PATH += /usr/local/opt/openssl/lib/
110
111   ifneq "$(USE_XWIN)" ""
112     DEFINITIONS += __XWINDOWS__ __X__
113     LIBS_USED += 
114 #Xm Xt X11 Xft Xp 
115 #need to separate out with a USE_MOTIF kind of thing.
116 #LIBS_USED += Xmu
117     HEADER_SEARCH_PATH += /usr/include/X11 /usr/X11R6/include /usr/include/g++
118     LIBRARY_SEARCH_PATH += /usr/X11R6/lib
119   endif
120
121   ifneq "$(USE_SSL)" ""
122     LIBS_USED += crypto ssl
123   endif
124   
125   ifneq "$(USE_WXWIDGETS)" ""
126     DEFINITIONS += __WXWIDGETS__ 
127     use_unicode =
128     ifneq "$(findstring UNICODE, $(DEFINITIONS))" ""
129         use_unicode = true
130     endif
131
132     # decide whether to turn on the unicode flag or not.
133 ###    ifneq "$(findstring UNICODE, $(DEFINITIONS))" ""
134     ifneq "$(use_unicode)" ""
135       UNICODE_FLAG_ADD = --unicode=yes
136       DEFINITIONS += wxUSE_UNICODE
137     else
138       UNICODE_FLAG_ADD = --unicode=no
139     endif
140
141     COMPILER_FLAGS += $(shell wx-config --cxxflags $(UNICODE_FLAG_ADD) )
142     LOAD_FLAG_PREFIX += $(shell wx-config --libs $(UNICODE_FLAG_ADD) )
143   endif
144
145   ifneq "$(USE_CURL)" ""
146     COMPILER_FLAGS += `curl-config --cflags`
147     LOAD_FLAG_SUFFIX += `curl-config --libs`
148   endif
149
150 endif
151
152 ###############################################################################
153
154 # Create the real list of local libraries needed.
155 TEMP_LOC1 = $(LOCAL_LIBS_USED:%=%$(TRIPART_VERSION))
156 ACTUAL_LOCAL_LIBS = $(TEMP_LOC1)
157
158 # Create the list of objects from the list of source files.
159 TEMP_OBJ1 = $(SOURCE:%.cpp=%.obj)
160 TEMP_OBJ2 = $(TEMP_OBJ1:%.c=%.obj)
161
162 # replace this when supporting resource files on unix.
163 TEMP_OBJ3 = $(TEMP_OBJ2:%.rc=)
164
165 TEMP_OBJ4 = $(TEMP_OBJ3:%.h=%.bad)
166 OBJECTS = $(TEMP_OBJ4)
167
168 # special case for multi-build and res files that need to be rebuilt.
169 #RES_OBJECTS_0 = $(SOURCE:%.cpp=)
170 #RES_OBJECTS_1 = $(RES_OBJECTS_0:%.c=)
171 #RES_OBJECTS = $(RES_OBJECTS_1:%.rc=$(OBJECT_DIR)/%.res)
172
173 # not much conversion anymore...
174 ACTUAL_OBJECTS = $(OBJECTS) $(EXTRA_OBJECTS)
175
176 # Updates the search path for the compiler and local libraries.
177 BASE_HEADER_PATH = $(CODEBASE_HEADERS) $(LOCAL_HEADERS) $(HOOPLE_HEADERS) $(SEARCH_DIRS)
178 HEADER_SEARCH_PATH += $(BASE_HEADER_PATH) $(COMPILER_HEADER_DIR)
179
180 LIBRARY_SEARCH_PATH += $(LOCAL_LIBRARIES) $(HOOPLE_LIBRARIES) \
181   $(STATIC_LIBRARY_DIR) $(COMPILER_LIBRARY_DIR) $(SEARCH_DIRS)
182
183 # Adds some directories that must be searched onto the search path for
184 # header files, such as the header file directory for the compiler.
185 COMPILER_FLAGS += $(HEADER_SEARCH_PATH:%=-I%) $(DEFINITIONS:%=-D%) $(UNDEFINITIONS:%=-U%) -DGLOBAL_PRODUCT_NAME="$(GLOBAL_PRODUCT_NAME)"
186
187 # The load flags are updated by looking for code libraries in the directories
188 # to search and by adding all of the code libraries that are used.
189 LOAD_FLAG_PREFIX += $(LIBRARY_SEARCH_PATH:%=$(LIBRARY_PATH_FLAG)%)
190 ifeq "$(OP_SYSTEM)" "UNIX"
191   ifneq "$(COMPILER)" "GNU_DARWIN"
192     LOAD_FLAG_PREFIX += -Xlinker --start-group
193     LOAD_FLAG_SUFFIX += -Xlinker --end-group
194   endif
195 endif
196 # had to switch from prefix to suffix recently.  oddity.
197 #LOAD_FLAG_PREFIX += $(LIBS_USED:%=$(LIBRARY_NAME_FLAG)%)
198 LOAD_FLAG_SUFFIX += $(LIBS_USED:%=$(LIBRARY_NAME_FLAG)%)
199
200 # we steal the exe targets and represent their dependency from the hidden
201 # cpp for the exe.
202 EXE_TEMP_0 = $(TARGETS:%.dll=)
203 EXE_TEMP_1 = $(EXE_TEMP_0:%.so=)
204 EXE_TEMP_2 = $(EXE_TEMP_1:%.lib=)
205 EXE_TEMP_3 = $(EXE_TEMP_2:%.elf=%.cpp)
206 EXE_CPPS   = $(EXE_TEMP_3:%.exe=%.cpp)
207
208 # used for compiling multiple source files at the same time with visual cpp.
209 MULTI_BUILD_CMD = $(CC) $(COMPILER_FLAGS) -c `cat $(BUILD_LIST_FILE)` $(OBJECT_NAME_FLAG)$(OBJECT_DIR)/
210
211 ifeq "$(OMIT_VERSIONS)" ""
212   ifneq "$(VERSION_RC_ROOT)" ""
213     VERSION_TARGET = $(VERSION_RC_ROOT)_version.rc
214   endif
215 endif
216
217 # if we are cleaning up, then do not generate dependency file.
218 ifeq "$(CLEAN)" ""
219   ifneq "$(GENDEPS)" ""
220     EXTRA_FIRST_TARGETS += gendeps
221   endif
222
223 # only do the deps generation for makefiles that are properly marked.
224 ifneq "$(findstring __BUILD_STATIC_APPLICATION__, $(DEFINITIONS))" ""
225   # generate static build dependencies for all targets in the makefile.
226   GENERATED_DEPS_LIST = $(TARGETS:%.exe=%.gendeps)
227 else
228   GENERATED_DEPS_LIST =
229 endif
230
231 endif
232
233 # Make sure that the directory for objects exists.
234 ACTUAL_FIRST_TARGETS = check_requirements $(EXTRA_FIRST_TARGETS) $(VERSION_TARGET) $(FIRST_TARGETS) pre_compilation
235
236 # Adds the primary targets to the list of products to create.
237 ACTUAL_TARGETS1 = $(TARGETS:%.exe=$(EXECUTABLE_DIR)/%)
238 ACTUAL_TARGETS2 = $(ACTUAL_TARGETS1:%.dll=%.so)
239 ACTUAL_TARGETS3 = $(ACTUAL_TARGETS2:%.so=$(DYNAMIC_LIBRARY_DIR)/%$(TRIPART_VERSION).so)
240 ACTUAL_TARGETS4 = $(ACTUAL_TARGETS3:%.lib=$(STATIC_LIBRARY_DIR)/%$(TRIPART_VERSION).library)
241 ACTUAL_TARGETS = $(ACTUAL_TARGETS4:%.elf=$(EXECUTABLE_DIR)/%.elf)
242
243 # Adds the last few targets that CLAM works on.
244 ACTUAL_LAST_TARGETS = post_compilation $(LAST_TARGETS)
245
246 ############################################################################
247
248 # This section defines the rules used to generate various objects from their
249 # source files.
250
251 ############################################################################
252
253 # The first section provides simplistic pseudo-targets for testing compilation
254 # rather than generating built products.
255
256 # the blank target is used to (somewhat) safely remove items from the SOURCE
257 # list.  it is an empty file that should be able to go in a library archive
258 # without hosing it up.
259 %.nil:
260 ifeq "$(NO_COMPILE)" ""
261         $(CATCHER)$(CC) -c $(CLAM_SCRIPTS)/cpp/blank_target.c -o $@
262 endif
263
264 %.bad:
265         @echo There is a problem with the makefile in the SOURCE variable.
266         @echo The offending item is: $@
267         $(HIDESH)$(CLAM_SCRIPTS)/exit_make.sh
268
269 ## faked debug object.
270 #%.obj: %.cpp
271 #ifeq "$(NO_COMPILE)" ""
272 #       @echo Bogus [$@].
273 #       $(CATCHER)$(CC) $(COMPILER_FLAGS) -c $< $(OBJECT_NAME_FLAG)$(TEMP)/$@
274 #endif
275
276 ifeq "$(CLEAN)" ""
277 # recreate dependencies for static applications.
278 %.gendeps: %.cpp
279         @echo "Generating Static Deps: $*.cpp"
280         $(CATCHER)$(CLAM_SCRIPTS)/cpp/buildor_gen_deps.sh "$*.cpp"
281 endif
282
283 ############################################################################
284
285 # trying to delay loading this as long as possible so the built in rule system for CLEANUPS can run with the right values.
286 # so far not working right!
287 #hmmm: fix this.
288
289 # Adds the main CLAM system in to get some work done.  This should be placed
290 # after the module rules are defined and before the module targets are
291 # defined.
292 include rules.def
293
294 ############################################################################
295
296 # this adds in a customization for the cleanup variables, since the base
297 # clam code has no idea about a dynamic library directory.
298
299 cpp_add_to_cleanups_variable:
300 #       echo here is actual targets before hand $(ACTUAL_TARGETS)
301         $(eval CLEANUPS = $(ACTUAL_TARGETS:%.exe=%) $(ACTUAL_TARGETS:$(STATIC_LIBRARY_DIR)/%.library=$(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)%.a) $(CLEANUPS) )
302 #       echo "IN CPP, new CLEANUPS variable: $(CLEANUPS)"
303 #fodder for anything missing a cleanup.
304 #       $(eval CLEANUPS = $(ACTUAL_TARGETS) $(ACTUAL_TARGETS:%.dll=%.so) $(ACTUAL_TARGETS:%.so=%.dll) $(CLEANUPS) )
305
306 #dynamic is taken care of in clam base still?
307 #DYNAMIC_LIBRARY_DIR
308 #hmmm: still should change there in the base and do it
309 # here instead.
310
311 ############################################################################
312
313 # C++ source to object file translation.
314 # if there is a special set of flags for this source file, we use them
315 # instead of the default compiler flags.
316
317 $(OBJECT_DIR)/%.obj: $(CURRENT_DIR)/%.cpp
318 ifeq "$(NO_COMPILE)" ""
319         @echo Compiling Object [$(notdir $@)]
320         @echo cmd: $(CATCHER)$(CC) $(COMPILER_FLAGS) -c $< $(OBJECT_NAME_FLAG)$@
321         $(HIDESH)-c 'if [ ! -d $(@D) ]; then mkdir $(@D); fi'
322         $(CATCHER)$(CC) $(COMPILER_FLAGS) -c $< $(OBJECT_NAME_FLAG)$@
323 endif
324
325 ############################################################################
326
327 # C source to object file translation.
328
329 $(OBJECT_DIR)/%.obj: $(CURRENT_DIR)/%.c
330 ifeq "$(NO_COMPILE)" ""
331         @echo Compiling Object [$(notdir $@)]
332         $(HIDESH)-c 'if [ ! -d $(@D) ]; then mkdir $(@D); fi'
333         $(CATCHER)$(CC) $(COMPILER_FLAGS) -c $< $(OBJECT_NAME_FLAG)$@
334 endif
335
336 ############################################################################
337
338 # resource compiler for windoze.
339
340 # we currently do not use rc files.
341 $(OBJECT_DIR)/%.res: %.rc
342   ifeq "$(NO_COMPILE)" ""
343         @echo Bogus resource [$@]
344         @echo >$@
345   endif
346
347 ############################################################################
348
349 # creates static libraries.
350 ifneq "$(NO_COMPILE)" ""
351 $(STATIC_LIBRARY_DIR)/%.library:
352 endif
353
354 ifeq "$(NO_COMPILE)" ""
355 $(STATIC_LIBRARY_DIR)/%.library: $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_LOCAL_LIBS:%=$(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)%$(LIB_ENDING)) $(PARAMETER_FILE)
356         $(HIDER)echo Building Static Library [$(notdir $@)]
357         @echo $@ >$(DIRTY_FILE)
358         $(CATCHER)$(LIBRARY_TOOL) $(LIBRARIAN_FLAGS) $(CREATE_LIBRARY_FLAG)$@ $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%)
359   ifneq "$(OP_SYSTEM)" "UNIX"
360         $(HIDER)mv $@ $(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)$*$(LIB_ENDING)
361         $(HIDER)echo nil >$@
362   else
363         $(HIDER)ranlib $@ 
364         $(HIDER)rm -f $(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)$*$(LIB_ENDING)
365         $(HIDER)ln -s $@ $(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)$*$(LIB_ENDING)
366   endif
367 endif #no_compile
368
369 ############################################################################
370
371 # creates dynamic libraries.
372
373 # we whack any existing LIB file, since we want to use changes in that file
374 # as a clue for when we should rescan the dependencies.  we'd be fine if
375 # visual c++ didn't keep an existing LIB if it does not change (even when the
376 # DLL does).
377
378 ifneq "$(NO_COMPILE)" ""
379 $(DYNAMIC_LIBRARY_DIR)/%.dll:
380 endif
381
382 ifeq "$(NO_COMPILE)" ""
383 $(DYNAMIC_LIBRARY_DIR)/%.dll: $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_LOCAL_LIBS:%=$(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)%$(LIB_ENDING)) $(ACTUAL_RESX) $(PARAMETER_FILE) 
384         $(HIDER)echo Building Dynamic Library [$(notdir $@)]
385         @echo $@ >$(DIRTY_FILE)
386         $(HIDER)rm -f $(@:%.dll=%.lib)
387         echo about to run link tool.
388         $(CATCHER)$(LINK_TOOL) $(LINKER_OUTPUT_FLAG)$@ -dll $(LOAD_FLAG_PREFIX) $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_RESX_FLAGS) $(ACTUAL_LOCAL_LIBS:%=$(LIBRARY_NAME_FLAG)$(LIB_PREFIX)%$(LIB_ENDING)) $(LOAD_FLAG_SUFFIX)
389         echo ran link tool.
390   ifeq "$(COMPILER_VERSION)" "8"
391         $(HIDESH)$(CLAM_SCRIPTS)/cpp/ms_manifest.sh "$@" "2"
392   endif
393   ifeq "$(COMPILER_VERSION)" "10"
394         $(HIDESH)$(CLAM_SCRIPTS)/cpp/ms_manifest.sh "$@" "2"
395   endif
396   ifneq "$(VCPP_VISTA_ICON)" ""
397         $(HIDER)ReplaceVistaIcon "$@" "$(VCPP_VISTA_ICON)"
398   endif
399 endif #no_compile
400
401 ifneq "$(NO_COMPILE)" ""
402 $(DYNAMIC_LIBRARY_DIR)/%.so:
403 endif
404
405 ifeq "$(NO_COMPILE)" ""
406 $(DYNAMIC_LIBRARY_DIR)/%.so: $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_LOCAL_LIBS:%=$(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)%$(LIB_ENDING)) $(PARAMETER_FILE)
407   ifeq "$(COMPILER:%_LINUX=LINUX)" "LINUX"
408         $(HIDER)echo Shared [$@]
409         @echo $@ >$(DIRTY_FILE)
410         $(CATCHER)$(LINK_TOOL) $(LINKER_OUTPUT_FLAG)$@ $(LOAD_FLAG_PREFIX) -shared -Wl,-soname,$*.so $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_LOCAL_LIBS:%=$(LIBRARY_NAME_FLAG)%) $(LOAD_FLAG_SUFFIX) 
411         $(HIDER)rm -f $(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)$*$(LIB_ENDING)
412         $(HIDER)ln -s $@ $(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)$*$(LIB_ENDING)
413   endif
414 endif #no_compile
415
416 ############################################################################
417
418 # creates "exe" executables using all of the appropriate objects.
419
420 ifneq "$(NO_COMPILE)" ""
421 $(EXECUTABLE_DIR)/%:
422 endif
423
424 ifeq "$(NO_COMPILE)" ""
425 $(EXECUTABLE_DIR)/%: $(OBJECT_DIR)/%.obj $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_LOCAL_LIBS:%=$(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)%$(LIB_ENDING)) $(PARAMETER_FILE)
426         $(HIDER)echo Building Application [$(notdir $@)]
427         @echo $@ >$(DIRTY_FILE)
428         $(CATCHER)$(LINK_TOOL) $(EXE_FLAGS) $(LOAD_FLAG_PREFIX) $< $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_LOCAL_LIBS:%=$(LIBRARY_NAME_FLAG)%) $(LOAD_FLAG_SUFFIX) $(LINKER_OUTPUT_FLAG)$@
429 #hmmm: experimental item below.
430 #$(^:force_rebuild=) 
431 endif #no_compile
432
433 ############################################################################
434
435 # creates firmware "elf" executables with the proper objects.
436
437 ifneq "$(NO_COMPILE)" ""
438 $(EXECUTABLE_DIR)/%.elf:
439 endif
440
441 ifeq "$(NO_COMPILE)" ""
442 $(EXECUTABLE_DIR)/%.elf: $(OBJECT_DIR)/%.obj $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_LOCAL_LIBS:%=$(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)%$(LIB_ENDING)) $(PARAMETER_FILE)
443         $(HIDER)echo Building Application [$(notdir $@)]
444         @echo $@ >$(DIRTY_FILE)
445         $(CATCHER)$(LINK_TOOL) $(MAP) $(LOAD_FLAG_PREFIX) $< $(LINKER_COMMAND_FILE) $(STARTUP_OBJECT_FILE) $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_LOCAL_LIBS:%=$(LIBRARY_NAME_FLAG)%) $(LOAD_FLAG_SUFFIX) $(LINKER_OUTPUT_FLAG)$@
446 #$(^:force_rebuild=) 
447         @echo Hex [$(EXECUTABLE_DIR)/$*.out]
448         $(CATCHER)$(DDUMP_TOOL) $(DDUMP_OPTIONS) $@ -o$(EXECUTABLE_DIR)/$*.out
449         @echo Binary [$(EXECUTABLE_DIR)/$*.bin]
450         $(CATCHER)$(DDUMP_TOOL) $(DDUMP_BIN_OPTIONS) $@ -o$(EXECUTABLE_DIR)/$*.bin
451 endif #no_compile
452
453 ############################################################################
454
455 # handles creating version resource files if this project has a version.ini.
456
457 ifeq "$(OMIT_VERSIONS)" ""
458   ifneq "$(VERSION_RC_ROOT)" ""
459 # only redo the version resource if it or version.ini is out of date.
460 %_version.rc: version.ini $(PARAMETER_FILE)
461         $(CATCHER)$(CLAM_BINARIES)/version_stamper$(EXE_END) . $(FEISTY_MEOW_GENERATED_STORE)/versions $(PARAMETER_FILE)
462   endif
463 endif
464
465 ############################################################################
466
467 # Now the active part of the make process...
468
469 # make sure we really want to include the dependencies file.
470 ifeq "$(TYPE)" "hierarchy"
471   # no dependencies for a simple hierarchy builder.
472   NO_DEPS = t
473 endif
474 ifneq "$(CLEAN)" ""
475   NO_DEPS = t
476   # no dependencies get left when we are cleaning up.
477 #  $(shell rm -f $(DEPS_FILE))
478 endif
479 ifneq "$(NO_COMPILE)" ""
480   # non compiling projects do not need dependencies.
481   NO_DEPS = t
482 endif
483 ifneq "$(REBUILD)" ""
484   NO_DEPS = t
485   # if we are rebuilding everything, we zap the deps file.
486   $(shell rm -f $(DEPS_FILE))
487 endif
488
489 # preserves intermediate files from being deleted.
490 ifeq "$(CLEAN)" ""
491 .PRECIOUS: $(OBJECT_DIR)/%.obj $(OBJECT_DIR)/%.res $(OBJECT_DIR)/%.resources $(OBJECT_DIR)/%.deps
492 #hmmm: added above deps.  maybe not right.
493 endif
494
495 # zaps things when they could not be created correctly.
496 ####.DELETE_ON_ERROR:
497
498 ############################################################################
499
500 # autodependency file creator.  See the make_dep man page for more info.
501
502 # we do the auto-dependencies unless the disabling flag is set.
503 ifneq "$(NO_DEPS)" ""
504     # makes the dependencies a no-op.
505     deps: $(PARAMETER_FILE)
506
507     $(DEPS_FILE): $(PARAMETER_FILE)
508
509 else
510   ifeq "$(CLEAN)" ""
511   deps: $(DEPS_FILE)
512
513   # this causes the dependency file to be regenerated if the sources or libs
514   # have changed.  we have to touch the deps file in case it is missing;
515   # makedep does not deal well with that.  also, we touch the dirty flag file
516   # to ensure that the fact we redid dependencies for some reason causes us
517   # to re-promote.  we only bother with any of this if we know we are going
518   # to really do some compilation; if in non-compile mode, we'll skip it.
519   ifneq "$(NO_COMPILE)" ""
520     # no dependencies in non-compile mode.
521     $(DEPS_FILE):
522
523   else
524     ifeq "$(LAX_DEPENDENCIES)" ""
525       $(DEPS_FILE): $(SOURCE) $(ACTUAL_LOCAL_LIBS:%=$(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)%$(LIB_ENDING)) $(wildcard *.h) $(EXE_CPPS)
526     else  # lax dependencies means create if missing or if parm file changed.
527       $(DEPS_FILE): $(PARAMETER_FILE)
528     endif # !lax dependencies.
529     ifneq "$(VERSION_RC_ROOT)" ""
530       ifeq "$(OMIT_VERSIONS)" ""
531         $(DEPS_FILE): $(VERSION_RC_ROOT)_version.rc
532       endif
533     endif
534         @echo Dependencies [$(notdir $@)]
535         -$(HIDESH)$(CLAM_SCRIPTS)/cpp/preconditions.sh
536         @touch $@
537 #       @echo dep adds: $(DEPENDENCY_ADDITIONS)
538         @$(CLAM_BINARIES)/makedep$(EXE_END) $(DEPENDENCY_DEFINITIONS:%=-D%) $(DEPENDENCY_ADDITIONS) -f$@ -o.obj -p$(OBJECT_DIR)/ -w 420 $(COMPILER_HEADER_DIR:%=-X%) $(THIRD_PARTY_DIR:%=-X%) -- $(COMPILER_FLAGS) $(SOURCE) $(EXE_CPPS)
539 #       $(CATCHER)$(CLAM_BINARIES)/makedep$(EXE_END) $(DEPENDENCY_DEFINITIONS:%=-D%) $(DEPENDENCY_ADDITIONS) -f$@ -o.obj -p$(OBJECT_DIR)/ -w 420 $(COMPILER_HEADER_DIR:%=-X%) $(THIRD_PARTY_DIR:%=-X%) -- $(COMPILER_FLAGS) $(SOURCE) $(EXE_CPPS)
540         @echo $@ >$(SUBMAKE_FLAG)
541   endif # non-compile.
542  else # cleaning.
543     # makes the dependencies a no-op for cleaning.
544     deps: $(PARAMETER_FILE)
545
546     $(DEPS_FILE): $(PARAMETER_FILE)
547  endif
548 endif # no-deps.
549
550 ############################################################################
551
552 # examines the required variables and complains if they are missing.
553 check_requirements:
554         $(HIDESH) -c 'if [ -z "$(PROJECT)" ]; then echo the PROJECT variable is not defined!; . $(CLAM_SCRIPTS)/exit_make.sh; fi'
555         $(HIDESH) -c 'if [ -z "$(TYPE)" ]; then echo the TYPE variable is not defined!; . $(CLAM_SCRIPTS)/exit_make.sh; fi'
556         $(HIDESH) -c 'if [ ! -d $(FEISTY_MEOW_GENERATED_STORE)/versions ]; then mkdir $(FEISTY_MEOW_GENERATED_STORE)/versions; fi'
557  
558 ############################################################################
559
560 # includes the auto-dependency information.  the dependency file is checked
561 # for being up-to-date.  if not, it gets rebuilt and the make is restarted.
562 ifeq "$(CLEAN)" ""
563   ifeq "$(NO_DEPS)" ""
564
565     # thank the buddha for this bit of code, or at least thank this page:
566     # http://stackoverflow.com/questions/5553352/how-do-i-check-if-file-exists-in-makefile
567     ifneq ("$(wildcard $(DEPS_FILE))","")
568       include $(DEPS_FILE)
569     endif
570
571   endif
572 endif
573
574 ############################################################################
575
576 # calls the script for preparing output directories and such.
577 pre_compilation:
578         $(HIDESH)$(CLAM_SCRIPTS)/cpp/preconditions.sh
579
580 ############################################################################
581
582 # calls the script for copying the final products to the library directory.
583 # we don't bother reporting errors from touch since there will sometimes
584 # not be any objects in the final directory.
585 post_compilation:
586         $(HIDESH)$(CLAM_SCRIPTS)/cpp/postconditions.sh
587
588 ############################################################################
589
590 # if REBUILD is defined, then we cause all objects to be recompiled.
591 .PHONY: force_rebuild
592 force_rebuild:
593
594 ifneq "$(REBUILD)" ""
595   # the target below needs the blank rule that it has for this to work.
596   $(FIRST_TARGETS) $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_TARGETS) $(EXE_CPPS:%.cpp=$(OBJECT_DIR)/%.obj) $(LAST_TARGETS): force_rebuild
597 endif
598
599 ############################################################################
600
601 # generate dependencies for any static targets if requested.
602 gendeps: $(GENERATED_DEPS_LIST)
603
604 ############################################################################
605