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