]> rtime.felk.cvut.cz Git - omk/sssa.git/blob - snippets/base
Return back "srcdir" variable. The VPATH cleanup has been too intrusive.
[omk/sssa.git] / snippets / base
1 #  Makefile.rules - OCERA make framework common project rules -*- makefile -*-
2 #
3 #  (C) Copyright 2003 by Pavel Pisa - OCERA team member
4 #  (C) Copyright 2006 by Michal Sojka - Czech Technical University, FEE, DCE
5 #
6 #  Homepage: http://rtime.felk.cvut.cz/omk/
7 #
8 # The OMK build system is distributed under the GNU General Public
9 # License.  See file COPYING for details.
10 #
11 # input variables
12 # V                .. if set to 1, full command text is shown else short form is used
13 # W                .. whole tree - if set to 1, make is always called from the top-level directory
14 # SUBDIRS          .. list of subdirectories intended for make from actual directory
15 # default_CONFIG   .. list of default config assignments CONFIG_XXX=y/n ...
16
17 # We need to ensure definition of sources directory first
18 ifndef SOURCES_DIR
19 # Only shell built-in pwd understands -L
20 SOURCES_DIR := $(shell ( pwd -L ) )
21 endif
22
23 .PHONY: all default check-make-ver omkize
24
25 ifdef W
26   ifeq ("$(origin W)", "command line")
27     OMK_WHOLE_TREE:=$(W)
28   endif
29 endif
30 ifndef OMK_WHOLE_TREE
31   OMK_WHOLE_TREE:=0
32 endif
33
34 ifneq ($(OMK_WHOLE_TREE),1)
35 all: check-make-ver default
36         @echo "Compilation finished"
37 else
38 # Run make in the top-level directory
39 all:
40         @$(MAKE) -C $(MAKERULES_DIR) OMK_SERIALIZE_INCLUDED=n SOURCES_DIR=$(MAKERULES_DIR) RELATIVE_DIR="" $(MAKECMDGOALS) W=0
41 endif
42
43 ifdef OMK_TESTSROOT
44 # Usage: $(call canttest,<error message>)
45 define canttest
46         ( echo "$(1)" > $(MAKERULES_DIR)/_canttest; echo "$(1)"; exit 1 )
47 endef
48 else
49 define canttest
50         echo "$(1)"
51 endef
52 endif
53
54 #=========================
55 # Include the config file
56
57 ifneq ($(CONFIG_FILE_OK),y)
58 ifndef CONFIG_FILE
59 CONFIG_FILE      := $(MAKERULES_DIR)/config.omk
60 endif
61 ifneq ($(wildcard $(CONFIG_FILE)-default),)
62 -include $(CONFIG_FILE)-default
63 else
64 ifneq ($(MAKECMDGOALS),default-config)
65 $(warning Please, run "make default-config" first)
66 endif
67 endif
68
69 -include $(MAKERULES_DIR)/config.target
70
71 ifneq ($(wildcard $(CONFIG_FILE)),)
72 include $(CONFIG_FILE)
73 CONFIG_FILE_OK = y
74 endif
75 endif #$(CONFIG_FILE_OK)
76
77 export SOURCES_DIR MAKERULES_DIR RELATIVE_DIR
78 export CONFIG_FILE OMK_SERIALIZE_INCLUDED OMK_VERBOSE OMK_SILENT
79 # OMK_SERIALIZE_INCLUDED has to be exported to submakes because passes
80 # must to be serialized only in the toplevel make.
81
82 ifndef RELATIVE_DIR
83 RELATIVE_DIR := $(SOURCES_DIR:$(MAKERULES_DIR)%=%)
84 endif
85 #$(warning  === RELATIVE_DIR = "$(RELATIVE_DIR)" ===)
86 override RELATIVE_DIR := $(RELATIVE_DIR:/%=%)
87 override RELATIVE_DIR := $(RELATIVE_DIR:\\%=%)
88 #$(warning  RELATIVE_DIR = "$(RELATIVE_DIR)")
89 override BACK2TOP_DIR := $(shell echo $(RELATIVE_DIR)/ | sed -e 's_//_/_g' -e 's_/\./_/_g' -e 's_^\./__g'  -e 's_\([^/][^/]*\)_.._g' -e 's_/$$__')
90 #$(warning  BACK2TOP_DIR = "$(BACK2TOP_DIR)")
91
92 #$(warning SOURCES_DIR = "$(SOURCES_DIR)")
93 #$(warning MAKERULES_DIR = "$(MAKERULES_DIR)")
94 #$(warning RELATIVE_DIR = "$(RELATIVE_DIR)")
95
96 # We have to use RELATIVE_PREFIX because of mingw
97 override RELATIVE_PREFIX := $(RELATIVE_DIR)/
98 override RELATIVE_PREFIX := $(RELATIVE_PREFIX:/%=%)
99
100 #vpath %.c $(SOURCES_DIR)
101 #vpath %.cc $(SOURCES_DIR)
102 #vpath %.cxx $(SOURCES_DIR)
103
104 srcdir = $(SOURCES_DIR)
105
106 # Defines for quiet compilation
107 ifdef V
108   ifeq ("$(origin V)", "command line")
109     OMK_VERBOSE = $(V)
110   endif
111 endif
112 ifndef OMK_VERBOSE
113   OMK_VERBOSE = 0
114 endif
115 ifneq ($(OMK_VERBOSE),0)
116   Q =
117 else
118   Q = @
119 endif
120 ifneq ($(findstring s,$(MAKEFLAGS)),)
121   QUIET_CMD_ECHO = true
122   OMK_SILENT = 1
123 else
124   QUIET_CMD_ECHO = echo
125 endif
126
127 MAKEFILE_OMK=Makefile.omk
128 # All subdirectories (even linked ones) containing Makefile.omk
129 # Usage in Makefile.omk: SUBDIRS = $(ALL_OMK_SUBDIRS)
130 ALL_OMK_SUBDIRS = $(patsubst %/$(MAKEFILE_OMK),%,$(patsubst $(SOURCES_DIR)/%,%,$(wildcard $(SOURCES_DIR)/*/$(MAKEFILE_OMK))))
131
132 # ===================================================================
133 # We have set up all important variables, so we can check and include
134 # real OCERA style Makefile.omk now
135 ifndef OMK_INCLUDED
136 include $(SOURCES_DIR)/$(MAKEFILE_OMK)
137 OMK_INCLUDED := 1
138 endif
139
140 check-make-ver:
141         @GOOD_MAKE_VERSION=`echo $(MAKE_VERSION) | sed -n -e 's/^[4-9]\..*\|^3\.9[0-9].*\|^3\.8[1-9].*/y/p'` ; \
142         if [ x$$GOOD_MAKE_VERSION != xy ] ; then \
143                 echo "Your make program version is too old and does not support OMK system." ; \
144                 echo "Please update to make program 3.81beta1 or newer." ; exit 1 ; \
145         fi
146
147 distclean dist-clean:
148         @$(QUIET_CMD_ECHO) "  RM      $(COMPILED_DIR_NAME) $(BUILD_DIR_NAME)"
149         @rm -fr $(MAKERULES_DIR)/$(COMPILED_DIR_NAME)  $(MAKERULES_DIR)/$(BUILD_DIR_NAME)
150
151 # Common OMK templates
152 # ====================
153
154 # Syntax: $(call mkdir,<dir name>)
155 define mkdir_def
156         [ -d $(1) ] || mkdir -p $(1) || exit 1
157 endef
158
159 ifneq ($(V),2)
160 NO_PRINT_DIRECTORY := --no-print-directory
161 endif
162
163 ifeq ($(USE_LEAF_MAKEFILES),n)
164 export USE_LEAF_MAKEFILES
165 SUBDIR_MAKEFILE=$(MAKERULES_DIR)/Makefile.rules
166 SOURCESDIR_MAKEFILE=$(MAKERULES_DIR)/Makefile.rules
167 else
168 SUBDIR_MAKEFILE=$(SOURCES_DIR)/$(dir)/Makefile
169 SOURCESDIR_MAKEFILE=$(SOURCES_DIR)/Makefile
170 endif
171
172 ifdef OMK_TESTSROOT
173 check-target = $$(@:%=%-check)
174 endif
175
176 # Syntax: $(call omk_pass_template,<pass name(s)>,<build dir>,[<local make flags>],[<local condition>])
177 define omk_pass_template
178 .PHNOY: $(1) $(addsuffix -local,$(1)) $(addsuffix -check,$(1))
179 $(1):
180         +@$(foreach dir,$(SUBDIRS),$(call mkdir_def,$(2)/$(dir)); \
181                 $(MAKE) SOURCES_DIR=$(SOURCES_DIR)/$(dir) $(NO_PRINT_DIRECTORY) \
182                 RELATIVE_DIR=$(RELATIVE_PREFIX)$(dir) -C $(2)/$(dir) \
183                 -f $(SUBDIR_MAKEFILE) $$@ || exit 1 ;) true
184 ifneq ($(4),)
185         @echo "make[omk]: $$@ in $(RELATIVE_DIR)"; \
186         $(call mkdir_def,$(2)); \
187         $(MAKE) $(NO_PRINT_DIRECTORY) SOURCES_DIR=$(SOURCES_DIR) RELATIVE_DIR=$(RELATIVE_DIR) -C $(2) \
188                 -f $(SOURCESDIR_MAKEFILE) $(3) $(check-target) $$(@:%=%-local)
189 endif
190 endef
191
192 # =======================
193 # DEFAULT CONFIG PASS
194
195 default-config:
196         @echo "# Start of OMK config file" > "$(CONFIG_FILE)-default"
197         @echo "# This file should not be altered manually" >> "$(CONFIG_FILE)-default"
198         @echo "# Overrides should be stored in file $(notdir $(CONFIG_FILE))" >> "$(CONFIG_FILE)-default"
199         @echo >> "$(CONFIG_FILE)-default"
200         @$(MAKE) $(NO_PRINT_DIRECTORY) -C $(MAKERULES_DIR) \
201                 RELATIVE_DIR="" SOURCES_DIR=$(MAKERULES_DIR) \
202                 -f $(MAKERULES_DIR)/Makefile default-config-pass
203
204 $(eval $(call omk_pass_template,default-config-pass,$$(LOCAL_BUILD_DIR),,always))
205
206 default-config-pass-local:
207 #       @echo Default config for $(RELATIVE_DIR)
208         @echo "# Config for $(RELATIVE_DIR)" >> "$(CONFIG_FILE)-default"
209         @$(foreach x, $(default_CONFIG), echo '$(x)' | \
210                 sed -e 's/^[^=]*=x$$/#\0/' >> "$(CONFIG_FILE)-default" ; )
211
212
213 omkize:
214         $(Q)if ! grep -q MAKERULES_DIR Makefile; then \
215            echo "Makefile is not OMK leaf makefile!" >&2; exit 1; \
216         fi
217         $(Q)for i in `find -L . -name Makefile.omk` ; do \
218            i=`dirname $${i}`; \
219            if [ x"$$i" != x"." ]; then \
220               rm -f $${i}/Makefile; \
221               cp Makefile $${i}/Makefile; \
222            fi \
223         done