e9f91b155d5aa7ee70d4107ed9a323a480b8a0d4
[feisty_meow.git] / scripts / clam / rules.def
1 # CLAM System default rule and target definitions.
2
3 ###############################################################################
4
5 #  This file contains composite macros and rules for creating objects.
6 #  This file should be included in the user's makefile after the variables
7 #  have been initialized appropriately for the particular project being
8 #  created.  The user's own targets should be placed after the include
9 #  directive that specifies this file.
10
11 ###############################################################################
12
13 # This ensures that any of other projects required by this one (defined through
14 # BUILD_BEFORE) get created before the real work in this project is done.
15 ifneq "$(BUILD_BEFORE)" ""
16   FIRST_TARGETS += $(BUILD_BEFORE:%=%.make)
17 endif
18 ifneq "$(BUILD_AFTER)" ""
19   LAST_TARGETS += $(BUILD_AFTER:%=%.make)
20 endif
21
22 # Make the default action be an error stop if we can't find an appropriate rule.
23 .DEFAULT:
24         $(HIDER)echo
25         $(HIDER)echo [$@] is missing files or has a makefile problem.
26         $(HIDER)echo
27         $(HIDESH)$(CLAM_DIR)/exit_make.sh
28
29 # This rule halts make for some supposedly devastating reason.  More
30 # information should be printed out by the cause of the halt.
31 %.halt:
32         @echo CLAM execution halted, the cause being: $@
33         $(HIDESH)$(CLAM_DIR)/exit_make.sh
34
35 # Provides a time-stamp in the make log.
36 show_date.%:
37         $(HIDER)echo "{$(shell date)}"
38
39 # The .make rule changes to the directory with the same first part of the
40 # pattern and makes whatever projects are there.  This is used by the build
41 # before procedure.
42 %.make:
43         $(HIDESH) -c '\
44 if [ -d $* ]; then \
45   if [ -f "$*/$(MAKEFILE_NAME)" ]; then \
46     $(MAKE) --silent -f "$(MAKEFILE_NAME)" NOT_FIRST_MAKE=t -C "$*"; \
47   else \
48     echo Skipping makefile-less directory [$*]; \
49   fi \
50 else \
51   echo Skipping missing directory [$*]; \
52 fi'
53
54 # always run the exes listed in RUN_TARGETS.
55 .PHONY: run_targets
56
57 # "all" is the first target to execute in any makefile.  we capture it and
58 # use it to produce the requested actions.
59 all: start $(ACTUAL_FIRST_TARGETS) $(ACTUAL_TARGETS) $(ACTUAL_LAST_TARGETS) run_targets finish 
60
61 # "start" announces the beginning of compilation.
62 start:
63         $(HIDESH) -c '\
64 if [ ! -d "$(CLAM_TMP)" ]; then \
65   mkdir "$(CLAM_TMP)"; \
66 fi'
67 ifeq "$(QUIET)" ""
68         $(HIDER)echo Project $(PROJECT) [$(shell basename $(shell dirname $(shell pwd) ) )/$(shell basename $(shell pwd) )] v. $(major).$(minor).$(revision).$(build)
69 endif
70         $(HIDER)rm -f $(FLAG_FILES)
71
72 # "finish" announces the end of compilation.  if there are targets to
73 # run, then they are executed here.
74 finish:
75 ifeq "$(QUIET)" ""
76         $(HIDER)echo Finished $(PROJECT).
77 endif
78         $(HIDER)rm -f $(FLAG_FILES) $(SUB_FLAG_FILES)
79 ifeq "$(NOT_FIRST_MAKE)" ""
80         $(HIDESH) -c '\
81 if [ ! -f "$(FAILURE_FILE)" ]; then \
82   $(SHELL) $(FEISTY_MEOW_SCRIPTS)/multimedia/sound_play.sh $(CLAM_FINISH_SOUND); \
83 fi'
84 endif
85 # toss the flag files so we do not see them again.
86         $(HIDER)rm -f "$(DIRTY_FILE)" "$(SUBMAKE_FLAG)"
87
88 # runs the programs specified in the RUN_TARGETS variable.
89 run_targets:
90         $(HIDESH)"$(CLAM_DIR)/target_runner.sh"
91 #### "$(RUN_TARGETS)"
92
93 # "make_subdirs" travels down each subdirectory and builds using make.
94 make_subdirs:
95         $(HIDESH) -c '\
96 for i in *; do \
97   if [ -d $$i ]; then \
98     if [ -f $$i/$(MAKEFILE_NAME) -a ! $$i -ef `pwd` ]; then \
99       echo; \
100       (cd $$i; $(MAKE) --silent NOT_FIRST_MAKE=t -f $(MAKEFILE_NAME) ); \
101     else \
102       echo Skipping makefile-less directory $$i...; \
103       echo; \
104     fi \
105   fi \
106 done; \
107 exit 0'
108
109 # "clean" is a default target that removes object files, libs, executable
110 # files and such that were created by the project.  it invokes the makefile
111 # again with the CLEAN variable defined so that this can be passed down into
112 # all subsequent makes.
113 clean: 
114         $(HIDER)$(MAKE) --silent CLEAN=t ready_to_clean
115
116 ready_to_clean: $(OTHER_CLEANS) clean_subdirs
117         @echo Whacking [$(CLEANUPS)]
118         $(HIDESH) -c '\
119 echo the other cleans were: $(OTHER_CLEANS); \
120 echo the cleanup removal list is: $(CLEANUPS); \
121 if [ ! -z "$(CLEANUPS)" ]; then \
122   for i in $(CLEANUPS) nonexistentishfileforlist; do \
123     rm -rf "$$i"; \
124   done \
125 fi'
126
127 # "clean_subdirs" travels down each subdirectory and cleans using make.
128 clean_subdirs:
129         $(HIDESH) -c '\
130 for i in *; do \
131   if [ -d "$$i" ]; then \
132     if [ -f "$$i/$(MAKEFILE_NAME)" -a ! "$$i" -ef `pwd` ]; then \
133       (cd "$$i"; $(MAKE) --silent NOT_FIRST_MAKE=t -f $(MAKEFILE_NAME) clean); \
134     else \
135       echo "Skipping makefile-less directory $$i..."; \
136     fi \
137   fi \
138 done; \
139 exit 0'
140 ###echo Cleaning "$$i" now...; 
141
142 # "rm_links" removes the files in the current directory that are links
143 # to other files.  this is only useful in a unix environment.
144 rm_links:
145         $(HIDESH) -c '\
146 for i in *; do \
147   if [ -h "$$i" ]; then \
148     /bin/rm -f "$$i"; \
149   fi \
150 done; \
151 exit 0'
152