first check-in of feisty meow codebase. many things broken still due to recent
[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's Makefile after the variables
9 # have been initialized appropriately for the particular project being
10 # compiled.  The user's own 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 # Modify the output directory for executable files if we're building a
19 # test project.
20 ifneq "$(findstring test, $(TYPE))" ""
21 ###  EXECUTABLE_DIR = $(TARGETS_DIR)/tests/$(PROJECT)
22 endif
23
24 # see if they have got the clean flag set.  if so, we will not build anything.
25 ifneq "$(CLEAN)" ""
26   NO_COMPILE = t
27 endif
28 # also omit version compilation and some logging when not compiling.
29 ifneq "$(NO_COMPILE)" ""
30   QUIET = t
31 endif
32
33 # implement special bits for gnu on unix.
34 ifeq "$(COMPILER)" "GNU_LINUX"
35   ifneq "$(USE_XWIN)" ""
36     ifneq "$(OP_SYSTEM)" "WIN32"
37       DEFINITIONS += __XWINDOWS__ __X__
38       LIBS_USED += Xm Xt X11 Xft Xp 
39 #need to separate out with a USE_MOTIF kind of thing.
40 LIBS_USED += Xmu
41       HEADER_SEARCH_PATH += /usr/include/X11 /usr/X11R6/include /usr/include/g++
42       LIBRARY_SEARCH_PATH += /usr/X11R6/lib 
43     endif
44   endif
45
46   ifneq "$(USE_SSL)" ""
47     LIBS_USED += ssl crypto
48   endif
49   
50   ifneq "$(USE_WXWIDGETS)" ""
51     DEFINITIONS += __WXWIDGETS__ 
52     use_unicode =
53     ifneq "$(findstring UNICODE, $(DEFINITIONS))" ""
54 #      ifeq "$(OP_SYSTEM)" "WIN32"
55         use_unicode = true
56 #      endif
57     endif
58
59     # decide whether to turn on the unicode flag or not.
60     ifneq "$(use_unicode)" ""
61       DEFINITIONS += wxUSE_UNICODE
62       UNICODE_FLAG_ADD = --unicode=yes
63     else
64       UNICODE_FLAG_ADD = --unicode=no
65     endif
66     # could add for debugging: --debug=yes 
67     COMPILER_FLAGS += $(shell wx-config --cxxflags $(UNICODE_FLAG_ADD) )
68
69     LOAD_FLAG_PREFIX += $(shell wx-config --libs $(UNICODE_FLAG_ADD) )
70   endif
71
72   ifneq "$(USE_CURL)" ""
73     COMPILER_FLAGS += `curl-config --cflags`
74     LOAD_FLAG_SUFFIX += `curl-config --static-libs`
75   endif
76
77 endif
78
79 ###############################################################################
80
81 ifeq "$(COMPILER)" "GNU_DARWIN"
82   ifneq "$(USE_XWIN)" ""
83     DEFINITIONS += __XWINDOWS__ __X__
84     LIBS_USED += 
85 #Xm Xt X11 Xft Xp 
86 #need to separate out with a USE_MOTIF kind of thing.
87 #LIBS_USED += Xmu
88     HEADER_SEARCH_PATH += /usr/include/X11 /usr/X11R6/include /usr/include/g++
89     LIBRARY_SEARCH_PATH += /usr/X11R6/lib 
90   endif
91
92   ifneq "$(USE_SSL)" ""
93     LIBS_USED += crypto
94   endif
95   
96   ifneq "$(USE_WXWIDGETS)" ""
97     DEFINITIONS += __WXWIDGETS__ 
98     use_unicode =
99     ifneq "$(findstring UNICODE, $(DEFINITIONS))" ""
100 #      ifeq "$(OP_SYSTEM)" "WIN32"
101         use_unicode = true
102 #      endif
103     endif
104
105     # decide whether to turn on the unicode flag or not.
106 ###    ifneq "$(findstring UNICODE, $(DEFINITIONS))" ""
107     ifneq "$(use_unicode)" ""
108       UNICODE_FLAG_ADD = --unicode=yes
109       DEFINITIONS += wxUSE_UNICODE
110     else
111       UNICODE_FLAG_ADD = --unicode=no
112     endif
113
114     COMPILER_FLAGS += $(shell wx-config --cxxflags $(UNICODE_FLAG_ADD) )
115     LOAD_FLAG_PREFIX += $(shell wx-config --libs $(UNICODE_FLAG_ADD) )
116   endif
117
118   ifneq "$(USE_CURL)" ""
119     COMPILER_FLAGS += `curl-config --cflags`
120     LOAD_FLAG_SUFFIX += `curl-config --libs`
121   endif
122
123 endif
124
125 ###############################################################################
126
127
128 # additions for gnu x86 and arm compilers.
129 ifneq "$(OP_SYSTEM)" "WIN32"
130   # is the freetds library support available on this host.
131   ifneq "$(ENABLE_FREETDS)" ""
132     # establish the headers if freetds is enabled.  that just means things
133     # can be compiled against it.  to link in the db-lib, the makefile should
134     # have a 'USE_FREETDS = true' statement.
135
136     # is this particular library or app using freetds?
137     ifneq "$(USE_FREETDS)" ""
138       DEFINITIONS += ENABLE_FREETDS _FREETDS_LIBRARY_SOURCE
139       LIBS_USED += rt sybdb 
140     endif
141   endif
142 endif
143
144 # win32 compiler additions.
145 ifeq "$(OP_SYSTEM)" "WIN32"
146   # processes the def file for linkage, if one has been specified.
147   ifneq "$(DEF_FILE)" ""
148     LOAD_FLAG_PREFIX += -def:$(DEF_FILE)
149   endif
150
151   ifneq "$(TYPE)" "library"
152     ifneq "$(USE_MFC)" ""
153       ifneq "$(findstring UNICODE, $(DEFINITIONS))" "" 
154         # specify the winmain type for unicode explicitly.
155         LOAD_FLAG_PREFIX += -entry:wWinMainCRTStartup
156       endif
157     endif
158   endif
159
160   # these are loaded after any special debugging libs.
161   ifneq "$(VCPP_USE_BASE)" ""
162     # the first set will be included in almost any old program.  we include
163     # winmm for multimedia in the base support since we make heavy use of the
164     # more accurate uptime function.
165     LOAD_FLAG_PREFIX += kernel32.lib user32.lib advapi32.lib shell32.lib \
166       version.lib winmm.lib shlwapi.lib 
167   endif
168
169   ifneq "$(USE_WXWIDGETS)" ""
170     DEFINITIONS += __WXWIDGETS__ __WXMSW__ 
171     LOCAL_HEADERS += $(THIRD_PARTY_DIR)/wxwidgets/include 
172     LIBRARY_SEARCH_PATH += $(THIRD_PARTY_DIR)/wxwidgets/lib
173 #    ifeq "$(findstring UNICODE, $(DEFINITIONS))" ""
174       LIBS_USED += wxmsw28_core.lib
175       LOCAL_HEADERS += $(THIRD_PARTY_DIR)/wxwidgets/lib/msw
176 #    else
177 #      DEFINITIONS += wxUSE_UNICODE
178 #      LIBS_USED += wxmsw28u_core.lib
179 #      LOCAL_HEADERS += $(THIRD_PARTY_DIR)/wxwidgets/lib/mswu
180 #    endif
181
182 ##    LOAD_FLAG_PREFIX += comctl32.lib shell32.lib
183     VCPP_USE_GUI = t
184     VCPP_USE_OLE = t
185   endif
186
187   ifneq "$(USE_CURL)" ""
188     DEFINITIONS += _WIN32
189     LOCAL_HEADERS += $(THIRD_PARTY_DIR)/curl/include
190     LIBRARY_SEARCH_PATH += $(THIRD_PARTY_DIR)/curl/lib
191 #    ifeq "$(findstring libcurl, $(LIBS_USED))" ""
192       LIBS_USED += libcurl.dll.a
193 #    endif
194   endif
195
196   ifneq "$(VCPP_USE_GUI)" ""
197     LOAD_FLAG_PREFIX += comctl32.lib comdlg32.lib gdi32.lib winspool.lib
198   endif
199
200   ifneq "$(VCPP_USE_OLE)" ""
201     LOAD_FLAG_PREFIX += ole32.lib oleaut32.lib uuid.lib
202     VCPP_USE_RPC = t
203   endif
204   ifneq "$(VCPP_USE_RPC)" ""
205     ifeq "$(COMPILER_VERSION)" "8"
206       LOAD_FLAG_PREFIX += rpcndr.lib rpcns4.lib rpcrt4.lib
207     endif
208     ifeq "$(COMPILER_VERSION)" "10"
209       LOAD_FLAG_PREFIX += rpcrt4.lib
210     endif
211     VCPP_USE_SOCK = t
212   endif
213   ifneq "$(VCPP_USE_SOCK)" ""
214     LOAD_FLAG_PREFIX += netapi32.lib ws2_32.lib
215   endif
216   ifneq "$(VCPP_USE_CLR)" ""
217     LOAD_FLAG_PREFIX += -noentry -include:"__DllMainCRTStartup@12"
218     COMPILER_FLAGS += -EHa -clr -AI "$(FRAMEWORK_DIR)" -AI "$(DYNAMIC_LIBRARY_DIR)" -FU "mscorlib.dll" -FU "System.dll" -FU "System.Data.dll" -FU "System.Windows.Forms.dll" -FU "System.Drawing.dll"
219   endif
220
221   ifneq "$(USE_SSL)" ""
222     LOCAL_HEADERS += $(THIRD_PARTY_DIR)/openssl/include
223     LIBRARY_SEARCH_PATH += $(THIRD_PARTY_DIR)/openssl/lib
224     LIBS_USED += libeay32.lib
225   endif
226   
227 endif
228
229 ifeq "$(OP_SYSTEM)" "WIN32"
230   # prep the actual source variable so that certain file names are translated.
231   ACTUAL_RESX = $(RESX:%.resx=$(OBJECT_DIR)/%.resources)
232   ACTUAL_RESX_FLAGS = $(ACTUAL_RESX:%=-ASSEMBLYLINKRESOURCE:%) 
233 else
234   ACTUAL_RESX = 
235   ACTUAL_RESX_FLAGS = 
236 endif
237
238 # Create the real list of local libraries needed.
239 TEMP_LOC1 = $(LOCAL_LIBS_USED:%=%$(TRIPART_VERSION))
240 ACTUAL_LOCAL_LIBS = $(TEMP_LOC1)
241
242 # Create the list of objects from the list of source files.
243 TEMP_OBJ1 = $(SOURCE:%.cpp=%.obj)
244 TEMP_OBJ2 = $(TEMP_OBJ1:%.c=%.obj)
245 ifeq "$(OP_SYSTEM)" "WIN32"
246   ifneq "$(OMIT_VERSIONS)" ""
247     # remove version rc files if we're not dealing with versions.
248     TEMP_OBJ3a = $(TEMP_OBJ2:%_version.rc=)
249   else
250     TEMP_OBJ3a = $(TEMP_OBJ2)
251   endif
252   TEMP_OBJ3 = $(TEMP_OBJ3a:%.rc=%.res)
253 else
254   # replace this when supporting resource files on unix.
255   TEMP_OBJ3 = $(TEMP_OBJ2:%.rc=)
256 endif
257 TEMP_OBJ4 = $(TEMP_OBJ3:%.h=%.bad)
258 OBJECTS = $(TEMP_OBJ4)
259
260 # special case for multi-build and res files that need to be rebuilt.
261 #RES_OBJECTS_0 = $(SOURCE:%.cpp=)
262 #RES_OBJECTS_1 = $(RES_OBJECTS_0:%.c=)
263 #RES_OBJECTS = $(RES_OBJECTS_1:%.rc=$(OBJECT_DIR)/%.res)
264
265 # not much conversion anymore...
266 ACTUAL_OBJECTS = $(OBJECTS) $(EXTRA_OBJECTS)
267
268 # Updates the search path for the compiler and local libraries.
269 BASE_HEADER_PATH = $(CODEBASE_HEADERS) $(LOCAL_HEADERS) $(HOOPLE_HEADERS) $(SEARCH_DIRS)
270 HEADER_SEARCH_PATH += $(BASE_HEADER_PATH) $(COMPILER_HEADER_DIR)
271
272 LIBRARY_SEARCH_PATH += $(LOCAL_LIBRARIES) $(HOOPLE_LIBRARIES) \
273   $(STATIC_LIBRARY_DIR) $(COMPILER_LIBRARY_DIR) $(SEARCH_DIRS)
274
275 # Adds some directories that must be searched onto the search path for
276 # header files, such as the header file directory for the compiler.
277 COMPILER_FLAGS += $(HEADER_SEARCH_PATH:%=-I%) $(DEFINITIONS:%=-D%) $(UNDEFINITIONS:%=-U%) -DGLOBAL_PRODUCT_NAME="$(GLOBAL_PRODUCT_NAME)"
278
279 # The load flags are updated by looking for code libraries in the directories
280 # to search and by adding all of the code libraries that are used.
281 LOAD_FLAG_PREFIX += $(LIBRARY_SEARCH_PATH:%=$(LIBRARY_PATH_FLAG)%)
282 ifeq "$(OP_SYSTEM)" "UNIX"
283 #mac no like these flags?
284 #  LOAD_FLAG_PREFIX += -Xlinker --start-group
285 #  LOAD_FLAG_SUFFIX += -Xlinker --end-group
286 endif
287 # had to switch from prefix to suffix recently.  oddity.
288 #LOAD_FLAG_PREFIX += $(LIBS_USED:%=$(LIBRARY_NAME_FLAG)%)
289 LOAD_FLAG_SUFFIX += $(LIBS_USED:%=$(LIBRARY_NAME_FLAG)%)
290
291 # we steal the exe targets and represent their dependency from the hidden
292 # cpp for the exe.
293 EXE_TEMP_0 = $(TARGETS:%.dll=)
294 EXE_TEMP_1 = $(EXE_TEMP_0:%.so=)
295 EXE_TEMP_2 = $(EXE_TEMP_1:%.lib=)
296 EXE_TEMP_3 = $(EXE_TEMP_2:%.elf=%.cpp)
297 EXE_CPPS   = $(EXE_TEMP_3:%.exe=%.cpp)
298
299 # used for compiling multiple source files at the same time with visual cpp.
300 MULTI_BUILD_CMD = $(CC) $(COMPILER_FLAGS) -c `cat $(BUILD_LIST_FILE)` $(OBJECT_NAME_FLAG)$(OBJECT_DIR)/
301
302 # prepare for mfc style DLLs.  currently we plan on all dlls we create being
303 # based on MFC.  this is an unfortunate requirement for using the mfc debug
304 # support for allocations; if regular new and DEBUG_NEW get mixed together,
305 # crashes used to result.  supposedly these are gone now at least.
306 ifneq "$(USE_MFC)" ""
307   ifeq "$(OP_SYSTEM)" "WIN32"
308     # set the flag that says we are doing mfc extension dlls.
309     DEFINITIONS += _AFXDLL
310     DEPENDENCY_DEFINITIONS += _MT _DLL
311     DEPENDENCY_DEFINITIONS += __AFXWIN_H__  # add this flag to shut stdafx up.
312   endif
313 endif
314
315 ifeq "$(OMIT_VERSIONS)" ""
316   ifneq "$(VERSION_RC_ROOT)" ""
317     VERSION_TARGET = $(VERSION_RC_ROOT)_version.rc
318   endif
319 endif
320
321 ifneq "$(GENDEPS)" ""
322   EXTRA_FIRST_TARGETS += gendeps
323 endif
324
325 # only do the deps generation for makefiles that are properly marked.
326 ifneq "$(findstring __BUILD_STATIC_APPLICATION__, $(DEFINITIONS))" ""
327   # generate static build dependencies for all targets in the makefile.
328   GENERATED_DEPS_LIST = $(TARGETS:%.exe=%.gendeps)
329 endif
330
331 # Make sure that the directory for objects exists.
332 ACTUAL_FIRST_TARGETS = check_requirements $(EXTRA_FIRST_TARGETS) $(VERSION_TARGET) $(FIRST_TARGETS) pre_compilation
333
334 # Adds the primary targets to the list of products to create.
335 ifeq "$(NO_COMPILE)" ""
336   ifeq "$(OP_SYSTEM)" "UNIX"
337     ACTUAL_TARGETS1 = $(TARGETS:%.exe=$(EXECUTABLE_DIR)/%)
338   else
339     ACTUAL_TARGETS1 = $(TARGETS:%.exe=$(EXECUTABLE_DIR)/%.exe)
340   endif
341   ifeq "$(OP_SYSTEM)" "UNIX"
342     ACTUAL_TARGETS2 = $(ACTUAL_TARGETS1:%.dll=%.so)
343     ACTUAL_TARGETS3 = $(ACTUAL_TARGETS2:%.so=$(DYNAMIC_LIBRARY_DIR)/%$(TRIPART_VERSION).so)
344   else
345     ACTUAL_TARGETS2 = $(ACTUAL_TARGETS1:%.so=%.dll)
346     ACTUAL_TARGETS3 = $(ACTUAL_TARGETS2:%.dll=$(DYNAMIC_LIBRARY_DIR)/%$(TRIPART_VERSION).dll)
347   endif
348   ACTUAL_TARGETS4 = $(ACTUAL_TARGETS3:%.lib=$(STATIC_LIBRARY_DIR)/%$(TRIPART_VERSION).library)
349   ACTUAL_TARGETS = $(ACTUAL_TARGETS4:%.elf=$(EXECUTABLE_DIR)/%.elf)
350 else #is no_compile
351   ACTUAL_TARGETS1 = $(TARGETS:%.exe=)
352   ACTUAL_TARGETS2 = $(ACTUAL_TARGETS1:%.dll=)
353   ACTUAL_TARGETS3 = $(ACTUAL_TARGETS2:%.so=)
354   ACTUAL_TARGETS4 = $(ACTUAL_TARGETS3:%.lib=)
355   ACTUAL_TARGETS = $(ACTUAL_TARGETS4:%.elf=)
356 endif
357
358 # Adds the last few targets for CLAM to do.
359 ACTUAL_LAST_TARGETS = post_compilation $(LAST_TARGETS)
360
361 ############################################################################
362
363 # This section defines the rules used to generate various objects from their
364 # source files.
365
366 ############################################################################
367
368 # The first section provides simplistic pseudo-targets for testing compilation
369 # rather than generating built products.
370
371 # the blank target is used to (somewhat) safely remove items from the SOURCE
372 # list.  it is an empty file that should be able to go in a library archive
373 # without hosing it up.
374 %.nil:
375 ifeq "$(NO_COMPILE)" ""
376         $(CATCHER)$(CC) -c $(CLAM_DIR)/cpp/blank_target.c -o $@
377 endif
378
379 %.bad:
380         @echo There is a problem with the makefile in the SOURCE variable.
381         @echo The offending item is $@.
382         $(HIDESH)$(CLAM_DIR)/exit_make.sh
383
384 ## faked debug object.
385 #%.obj: %.cpp
386 #ifeq "$(NO_COMPILE)" ""
387 #       @echo Bogus [$@].
388 #       $(CATCHER)$(CC) $(COMPILER_FLAGS) -c $< $(OBJECT_NAME_FLAG)$(TEMP)/$@
389 #endif
390
391 # recreate dependencies for static applications.
392 %.gendeps: %.cpp
393         @echo "Generating Static Deps: $*.cpp"
394         $(HIDESH)$(CLAM_DIR)/cpp/buildor_gen_deps.sh "$*.cpp"
395
396 ############################################################################
397
398 # C++ source to object file translation.
399 # if there is a special set of flags for this source file, we use them
400 # instead of the default compiler flags.
401
402 $(OBJECT_DIR)/%.obj: $(CURRENT_DIR)/%.cpp
403 ifeq "$(NO_COMPILE)" ""
404   ifneq "$(COMPILER)" "VISUAL_CPP"
405         @echo Compiling [$(shell basename $@)].
406         $(HIDESH)-c 'if [ ! -d $(@D) ]; then mkdir $(@D); fi'
407         $(CATCHER)$(CC) $(COMPILER_FLAGS) -c $< $(OBJECT_NAME_FLAG)$@
408   else
409         @echo $< >>$(BUILD_LIST_FILE)
410         @echo $@ >>$(BUILD_WHACK_FILE)
411         @echo >$@
412   endif
413 endif
414
415 ############################################################################
416
417 # C source to object file translation.
418
419 $(OBJECT_DIR)/%.obj: $(CURRENT_DIR)/%.c
420 ifeq "$(NO_COMPILE)" ""
421   ifneq "$(COMPILER)" "VISUAL_CPP"
422         @echo Compiling [$@].
423         $(HIDESH)-c 'if [ ! -d $(@D) ]; then mkdir $(@D); fi'
424         $(CATCHER)$(CC) $(COMPILER_FLAGS) -c $< $(OBJECT_NAME_FLAG)$@
425   else
426         @echo $< >>$(BUILD_LIST_FILE)
427         @echo $@ >>$(BUILD_WHACK_FILE)
428         @echo >$@
429   endif
430 endif
431
432 ############################################################################
433
434 # resource compiler for win32.
435
436 ifeq "$(OP_SYSTEM)" "WIN32"
437 $(OBJECT_DIR)/%.res: %.rc $(PARAMETER_FILE)
438   ifeq "$(NO_COMPILE)" ""
439         @echo Resource [$@].
440         $(HIDESH)-c 'if [ ! -d $(@D) ]; then mkdir $(@D); fi'
441         $(CATCHER)$(RC) -r $(DEFINITIONS:%=-D%) $(HEADER_SEARCH_PATH:%=-i%) -fo $@ $<
442   endif
443
444 $(OBJECT_DIR)/%.resources: %.resx $(PARAMETER_FILE)
445   ifeq "$(NO_COMPILE)" ""
446         @echo Resource [$@].
447         $(HIDESH)-c 'if [ ! -d $(@D) ]; then mkdir $(@D); fi'
448         $(VCS_ROOT)/../SDK/v1.1/bin/resgen $< $@
449   endif
450 else #non-win32
451   # this platform probably does not use rc files.
452 $(OBJECT_DIR)/%.res: %.rc
453   ifeq "$(NO_COMPILE)" ""
454         @echo Bogus resource [$@].
455         @echo >$@
456   endif
457 endif #win32
458
459 ############################################################################
460
461 # creates static libraries.
462 ifneq "$(NO_COMPILE)" ""
463 $(STATIC_LIBRARY_DIR)/%.library:
464 endif
465
466 ifeq "$(NO_COMPILE)" ""
467 $(STATIC_LIBRARY_DIR)/%.library: $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_LOCAL_LIBS:%=$(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)%$(LIB_ENDING)) $(PARAMETER_FILE)
468         $(HIDER)echo Static [$@].
469         @echo $@ >$(DIRTY_FILE)
470   ifeq "$(COMPILER)" "VISUAL_CPP"
471         $(HIDESH)-c 'if [ -f $(BUILD_LIST_FILE) ]; then $(SHELL) $(CLAM_DIR)/cpp/rebuild_oldies.sh $(MULTI_BUILD_CMD); fi'
472   endif
473         $(CATCHER)$(LIBRARY_TOOL) $(LIBRARIAN_FLAGS) $(CREATE_LIBRARY_FLAG)$@ $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%)
474   ifneq "$(OP_SYSTEM)" "UNIX"
475         $(HIDER)mv $@ $(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)$*$(LIB_ENDING)
476         $(HIDER)echo nil >$@
477   else
478         $(HIDER)ranlib $@ 
479         $(HIDER)rm -f $(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)$*$(LIB_ENDING)
480         $(HIDER)ln -s $@ $(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)$*$(LIB_ENDING)
481   endif
482 endif #no_compile
483
484 ############################################################################
485
486 # creates dynamic libraries.
487
488 # we whack any existing LIB file, since we want to use changes in that file
489 # as a clue for when we should rescan the dependencies.  we'd be fine if
490 # visual c++ didn't keep an existing LIB if it doesn't change (even when the
491 # DLL does).
492
493 ifneq "$(NO_COMPILE)" ""
494 $(DYNAMIC_LIBRARY_DIR)/%.dll:
495 endif
496
497 ifeq "$(NO_COMPILE)" ""
498 $(DYNAMIC_LIBRARY_DIR)/%.dll: $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_LOCAL_LIBS:%=$(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)%$(LIB_ENDING)) $(ACTUAL_RESX) $(PARAMETER_FILE) 
499 #hmmm: use the res objects variable to rebuild res files as needed.
500 ###$(RES_OBJECTS) 
501         $(HIDER)echo Dynamic [$@].
502         @echo $@ >$(DIRTY_FILE)
503   ifeq "$(COMPILER)" "VISUAL_CPP"
504         $(HIDESH)-c 'if [ -f $(BUILD_LIST_FILE) ]; then $(SHELL) $(CLAM_DIR)/cpp/rebuild_oldies.sh $(MULTI_BUILD_CMD); fi'
505   endif
506         $(HIDER)rm -f $(@:%.dll=%.lib)
507         $(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)
508   ifeq "$(COMPILER_VERSION)" "8"
509         $(HIDESH)$(CLAM_DIR)/cpp/ms_manifest.sh "$@" "2"
510   endif
511   ifeq "$(COMPILER_VERSION)" "10"
512         $(HIDESH)$(CLAM_DIR)/cpp/ms_manifest.sh "$@" "2"
513   endif
514   ifneq "$(VCPP_VISTA_ICON)" ""
515         $(HIDER)ReplaceVistaIcon "$@" "$(VCPP_VISTA_ICON)"
516   endif
517 endif #no_compile
518
519 ifneq "$(NO_COMPILE)" ""
520 $(DYNAMIC_LIBRARY_DIR)/%.so:
521 endif
522
523 ifeq "$(NO_COMPILE)" ""
524 $(DYNAMIC_LIBRARY_DIR)/%.so: $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_LOCAL_LIBS:%=$(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)%$(LIB_ENDING)) $(PARAMETER_FILE)
525   ifeq "$(COMPILER:%_LINUX=LINUX)" "LINUX"
526         $(HIDER)echo Shared [$@].
527         @echo $@ >$(DIRTY_FILE)
528         $(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) 
529         $(HIDER)rm -f $(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)$*$(LIB_ENDING)
530         $(HIDER)ln -s $@ $(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)$*$(LIB_ENDING)
531   endif
532 endif #no_compile
533
534 ############################################################################
535
536 # creates "exe" executables using all of the appropriate objects.
537
538 ifeq "$(OP_SYSTEM)" "WIN32"
539   ifneq "$(NO_COMPILE)" ""
540 $(EXECUTABLE_DIR)/%.exe:
541   endif
542
543   ifeq "$(NO_COMPILE)" ""
544 $(EXECUTABLE_DIR)/%.exe: $(OBJECT_DIR)/%.obj $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_LOCAL_LIBS:%=$(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)%$(LIB_ENDING)) $(ACTUAL_RESX) $(PARAMETER_FILE)
545         $(HIDER)echo Application [$@].
546         @echo $@ >$(DIRTY_FILE)
547     ifeq "$(COMPILER)" "VISUAL_CPP"
548         $(HIDESH)-c 'if [ -f $(BUILD_LIST_FILE) ]; then $(SHELL) $(CLAM_DIR)/cpp/rebuild_oldies.sh $(MULTI_BUILD_CMD); fi'
549     endif
550         $(CATCHER)$(LINK_TOOL) $(EXE_FLAGS) $(LOAD_FLAG_PREFIX) $< $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_RESX_FLAGS) $(ACTUAL_LOCAL_LIBS:%=$(LIBRARY_NAME_FLAG)$(LIB_PREFIX)%$(LIB_ENDING)) $(LOAD_FLAG_SUFFIX) $(LINKER_OUTPUT_FLAG)$@
551 #$(^:force_rebuild=) 
552     ifeq "$(COMPILER_VERSION)" "8"
553         $(HIDESH)$(CLAM_DIR)/cpp/ms_manifest.sh "$@" "1"
554     endif
555     ifeq "$(COMPILER_VERSION)" "10"
556         $(HIDESH)$(CLAM_DIR)/cpp/ms_manifest.sh "$@" "1"
557     endif
558     ifneq "$(VCPP_VISTA_ICON)" ""
559         $(HIDER)ReplaceVistaIcon "$@" "$(VCPP_VISTA_ICON)"
560     endif
561   endif #no_compile
562 endif #win32
563
564 ifeq "$(OP_SYSTEM)" "UNIX"
565   ifneq "$(NO_COMPILE)" ""
566 $(EXECUTABLE_DIR)/%:
567   endif
568
569   ifeq "$(NO_COMPILE)" ""
570 $(EXECUTABLE_DIR)/%: $(OBJECT_DIR)/%.obj $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_LOCAL_LIBS:%=$(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)%$(LIB_ENDING)) $(PARAMETER_FILE)
571         $(HIDER)echo Application [$@].
572         @echo $@ >$(DIRTY_FILE)
573         $(CATCHER)$(LINK_TOOL) $(EXE_FLAGS) $(LOAD_FLAG_PREFIX) $< $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_LOCAL_LIBS:%=$(LIBRARY_NAME_FLAG)%) $(LOAD_FLAG_SUFFIX) $(LINKER_OUTPUT_FLAG)$@
574 #hmmm: experimental item below.
575 #$(^:force_rebuild=) 
576   endif #no_compile
577 endif #unix
578
579 ############################################################################
580
581 # creates firmware "elf" executables with the proper objects.
582
583 ifneq "$(NO_COMPILE)" ""
584 $(EXECUTABLE_DIR)/%.elf:
585 endif
586
587 ifeq "$(NO_COMPILE)" ""
588 $(EXECUTABLE_DIR)/%.elf: $(OBJECT_DIR)/%.obj $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_LOCAL_LIBS:%=$(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)%$(LIB_ENDING)) $(PARAMETER_FILE)
589         $(HIDER)echo Application [$@].
590         @echo $@ >$(DIRTY_FILE)
591         $(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)$@
592 #$(^:force_rebuild=) 
593         @echo Hex [$(EXECUTABLE_DIR)/$*.out].
594         $(CATCHER)$(DDUMP_TOOL) $(DDUMP_OPTIONS) $@ -o$(EXECUTABLE_DIR)/$*.out
595         @echo Binary [$(EXECUTABLE_DIR)/$*.bin].
596         $(CATCHER)$(DDUMP_TOOL) $(DDUMP_BIN_OPTIONS) $@ -o$(EXECUTABLE_DIR)/$*.bin
597 endif #no_compile
598
599 ############################################################################
600
601 # handles creating version resource files if this project has a version.ini.
602
603 ifeq "$(OMIT_VERSIONS)" ""
604   ifneq "$(VERSION_RC_ROOT)" ""
605 # only redo the version resource if it or version.ini is out of date.
606 %_version.rc: version.ini $(PARAMETER_FILE)
607         $(CATCHER)$(CLAM_BIN)/version_stamper$(EXE_END) . $(PARAMETER_FILE)
608   endif
609 endif
610
611 ############################################################################
612
613 # Now the active part of the make process...
614
615 # Adds the main CLAM system in to get some work done.  This should be placed
616 # after the module's rules are defined and before the module's targets are
617 # defined.
618 include rules.def
619
620 # make sure we really want to include the dependencies file.
621 ifeq "$(TYPE)" "hierarchy"
622   # no dependencies for a simple hierarchy builder.
623   NO_DEPS = t
624 endif
625 ifneq "$(CLEAN)" ""
626   NO_DEPS = t
627   # no dependencies get left when we are cleaning up.
628   $(shell rm -f $(DEPS_FILE))
629 endif
630 ifneq "$(NO_COMPILE)" ""
631   # non compiling projects do not need dependencies.
632   NO_DEPS = t
633 endif
634 ifneq "$(REBUILD)" ""
635   NO_DEPS = t
636   # if we are rebuilding everything, we zap the deps file.
637   $(shell rm -f $(DEPS_FILE))
638 endif
639
640 # includes the auto-dependency information.  the dependency file is checked
641 # for being up-to-date.  if not, it gets rebuilt and the make is restarted.
642 ifeq "$(NO_DEPS)" ""
643   include $(DEPS_FILE)
644 endif
645
646 # preserves intermediate files from being deleted.
647 ifeq "$(CLEAN)" ""
648 .PRECIOUS: $(OBJECT_DIR)/%.obj $(OBJECT_DIR)/%.res $(OBJECT_DIR)/%.resources
649 endif
650
651 # zaps things when they could not be created correctly.
652 ####.DELETE_ON_ERROR:
653
654 ############################################################################
655
656 # autodependency file creator.  See the make_dep man page for more info.
657
658 # we do the auto-dependencies unless the disabling flag is set.
659 ifneq "$(NO_DEPS)" ""
660     # makes the dependencies a no-op.
661     deps: $(PARAMETER_FILE)
662
663     $(DEPS_FILE): $(PARAMETER_FILE)
664
665 else
666   deps: $(DEPS_FILE)
667
668   # this causes the dependency file to be regenerated if the sources or libs
669   # have changed.  we have to touch the deps file in case it's missing;
670   # makedep doesn't deal well with that.  also, we touch the dirty flag file
671   # to ensure that the fact we redid dependencies for some reason causes us
672   # to re-promote.  we only bother with any of this if we know we're going
673   # to really do some compilation; if in non-compile mode, we'll skip it.
674   ifneq "$(NO_COMPILE)" ""
675     # no dependencies in non-compile mode.
676     $(DEPS_FILE):
677
678   else
679     ifeq "$(LAX_DEPENDENCIES)" ""
680       $(DEPS_FILE): $(SOURCE) $(ACTUAL_LOCAL_LIBS:%=$(STATIC_LIBRARY_DIR)/$(LIB_PREFIX)%$(LIB_ENDING)) $(wildcard *.h) $(EXE_CPPS)
681     else  # lax dependencies means create if missing or if parm file changed.
682       $(DEPS_FILE): $(PARAMETER_FILE)
683     endif # !lax dependencies.
684     ifneq "$(VERSION_RC_ROOT)" ""
685       ifeq "$(OMIT_VERSIONS)" ""
686         $(DEPS_FILE): $(VERSION_RC_ROOT)_version.rc
687       endif
688     endif
689         @echo Dependencies [$(shell basename $@)].
690         -$(HIDESH)$(CLAM_DIR)/cpp/preconditions.sh
691         @touch $@
692 #       @echo dep adds: $(DEPENDENCY_ADDITIONS)
693         @$(CLAM_BIN)/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)
694 #       $(CATCHER)$(CLAM_BIN)/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)
695         @echo $@ >$(SUBMAKE_FLAG)
696   endif # non-compile.
697 endif # no-deps.
698
699 ############################################################################
700
701 # examines the required variables and complains if they're missing.
702 check_requirements:
703         $(HIDESH) -c 'if [ -z "$(PROJECT)" ]; then echo the PROJECT variable is not defined!; . $(CLAM_DIR)/exit_make.sh; fi'
704         $(HIDESH) -c 'if [ -z "$(TYPE)" ]; then echo the TYPE variable is not defined!; . $(CLAM_DIR)/exit_make.sh; fi'
705  
706 ############################################################################
707
708 # calls the script for preparing output directories and such.
709 pre_compilation:
710         $(HIDESH)$(CLAM_DIR)/cpp/preconditions.sh
711
712 ############################################################################
713
714 # calls the script for copying the final products to the library directory.
715 # we don't bother reporting errors from touch since there will sometimes
716 # not be any objects in the final directory.
717 post_compilation:
718         $(HIDESH)$(CLAM_DIR)/cpp/postconditions.sh
719
720 ############################################################################
721
722 # if REBUILD is defined, then we cause all objects to be recompiled.
723 .PHONY: force_rebuild
724 force_rebuild:
725
726 ifneq "$(REBUILD)" ""
727   # the target below needs the blank rule that it has for this to work.
728   $(FIRST_TARGETS) $(ACTUAL_OBJECTS:%=$(OBJECT_DIR)/%) $(ACTUAL_TARGETS) $(EXE_CPPS:%.cpp=$(OBJECT_DIR)/%.obj) $(LAST_TARGETS): force_rebuild
729 endif
730
731 ############################################################################
732
733 # generate dependencies for any static targets if requested.
734 gendeps: $(GENERATED_DEPS_LIST)
735
736 ############################################################################
737