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