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