]>
Commit | Line | Data |
---|---|---|
094a497d AL |
1 | # -*- make -*- |
2 | ||
3 | # This file configures the default environment for the make system | |
4 | # The way it works is fairly simple, each module is defined in it's | |
5 | # own *.mak file. It expects a set of variables to be set to values | |
6 | # for it to operate as expected. When included the module generates | |
7 | # the requested rules based on the contents of its control variables. | |
8 | ||
9 | # This works out very well and allows a good degree of flexability. | |
10 | # To accomidate some of the features we introduce the concept of | |
11 | # local variables. To do this we use the 'Computed Names' feature of | |
12 | # gmake. Each module declares a LOCAL scope and access it with, | |
13 | # $($(LOCAL)-VAR) | |
14 | # This works very well but it is important to rembember that within | |
15 | # a rule the LOCAL var is unavailble, it will have to be constructed | |
16 | # from the information in the rule invokation. For stock rules like | |
17 | # clean this is simple, we use a local clean rule called clean/$(LOCAL) | |
18 | # and then within the rule $(@F) gets back $(LOCAL)! Other rules will | |
19 | # have to use some other mechanism (filter perhaps?) The reason such | |
20 | # lengths are used is so that each directory can contain several 'instances' | |
46976ca4 AL |
21 | # of any given module. I notice that the very latest gmake has the concept |
22 | # of local variables for rules. It is possible this feature in conjunction | |
23 | # with the generated names will provide a very powerfull solution indeed! | |
094a497d AL |
24 | |
25 | # A build directory is used by default, all generated items get put into | |
26 | # there. However unlike automake this is not done with a VPATH build | |
27 | # (vpath builds break the distinction between #include "" and #include <>) | |
28 | # but by explicly setting the BUILD variable. Make is invoked from | |
29 | # within the source itself which is much more compatible with compilation | |
30 | # environments. | |
93bf083d | 31 | ifndef NOISY |
118a5e95 | 32 | .SILENT: |
93bf083d | 33 | endif |
094a497d | 34 | |
118a5e95 AL |
35 | # Search for the build directory |
36 | ifdef BUILD | |
93641593 | 37 | BUILD_POSSIBLE := $(BUILD) $(BASE)/$(BUILD) |
118a5e95 | 38 | else |
f40e3a64 | 39 | BUILD_POSSIBLE := $(BASE) $(BASE)/build-$(shell uname -m) $(BASE)/build |
118a5e95 AL |
40 | endif |
41 | ||
93641593 | 42 | BUILDX:= $(foreach i,$(BUILD_POSSIBLE),$(wildcard $(i)/environment.mak*)) |
118a5e95 | 43 | |
93641593 | 44 | ifeq ($(words $(BUILDX)),0) |
101030ab AL |
45 | |
46 | # Check for a busted wildcard function. We use this function in several | |
47 | # places, it must work. | |
48 | ifeq ($(words $(wildcard *)),0) | |
49 | error-all/environment.mak: | |
50 | echo You have a broken version of GNU Make - upgrade. | |
70fbac25 | 51 | error-out-and-die |
101030ab AL |
52 | else |
53 | error-all/environment.mak: | |
b2e465d6 | 54 | echo Can not find the build directory in $(BUILD_POSSIBLE) -- use BUILD= |
70fbac25 | 55 | error-out-and-die |
094a497d AL |
56 | endif |
57 | ||
101030ab AL |
58 | # Force include below to come to the error target |
59 | BUILDX := error-all | |
60 | else | |
61 | BUILDX:= $(patsubst %/,%,$(firstword $(dir $(BUILDX)))) | |
62 | endif | |
63 | ||
93641593 AL |
64 | override BUILD := $(BUILDX) |
65 | ||
094a497d AL |
66 | # Base definitions |
67 | INCLUDE := $(BUILD)/include | |
68 | BIN := $(BUILD)/bin | |
69 | LIB := $(BIN) | |
3164dff9 | 70 | OBJ := $(BUILD)/obj/$(SUBDIR) |
094a497d | 71 | DEP := $(OBJ) |
93bf083d | 72 | DOC := $(BUILD)/docs |
80948457 AL |
73 | PO := $(BUILD)/po |
74 | LOCALE := $(BUILD)/locale | |
75 | PO_DOMAINS := $(BUILD)/po/domains | |
094a497d AL |
76 | |
77 | # Module types | |
ac966541 AL |
78 | LIBRARY_H = $(BASE)/buildlib/library.mak |
79 | DEBIANDOC_H = $(BASE)/buildlib/debiandoc.mak | |
80 | MANPAGE_H = $(BASE)/buildlib/manpage.mak | |
1164783d | 81 | PROGRAM_H = $(BASE)/buildlib/program.mak |
b2e465d6 | 82 | PYTHON_H = $(BASE)/buildlib/python.mak |
c3c459fc | 83 | COPY_H = $(BASE)/buildlib/copy.mak |
8a9ec519 | 84 | YODL_MANPAGE_H = $(BASE)/buildlib/yodl_manpage.mak |
b2e465d6 | 85 | SGML_MANPAGE_H = $(BASE)/buildlib/sgml_manpage.mak |
24f6490f | 86 | XML_MANPAGE_H = $(BASE)/buildlib/xml_manpage.mak |
b2e465d6 | 87 | FAIL_H = $(BASE)/buildlib/fail.mak |
80948457 | 88 | PODOMAIN_H = $(BASE)/buildlib/podomain.mak |
094a497d | 89 | |
b0c76450 | 90 | include $(BUILD)/environment.mak |
f58a97d3 | 91 | |
e1b1ae50 AL |
92 | ifdef STATICLIBS |
93 | LIBRARY_H += $(BASE)/buildlib/staticlibrary.mak | |
94 | endif | |
95 | ||
c1a22377 AL |
96 | ifdef ONLYSTATICLIBS |
97 | LIBRARY_H = $(BASE)/buildlib/staticlibrary.mak | |
98 | endif | |
99 | ||
094a497d AL |
100 | # Source location control |
101 | # SUBDIRS specifies sub components of the module that | |
102 | # may be located in subdrictories of the source dir. | |
103 | # This should be declared before including this file | |
104 | SUBDIRS+= | |
105 | ||
106 | # Header file control. | |
107 | # TARGETDIRS indicitates all of the locations that public headers | |
108 | # will be published to. | |
109 | # This should be declared before including this file | |
110 | HEADER_TARGETDIRS+= | |
111 | ||
112 | # Options | |
1164783d AL |
113 | CPPFLAGS+= -I$(INCLUDE) |
114 | LDFLAGS+= -L$(LIB) | |
094a497d | 115 | |
b2e465d6 | 116 | # Directors to create |
80948457 | 117 | MKDIRS := $(BIN) |
b2e465d6 | 118 | |
094a497d AL |
119 | # Phony rules. Other things hook these by appending to the dependency |
120 | # list | |
b2e465d6 | 121 | .PHONY: headers library clean veryclean all binary program doc dirs |
93641593 | 122 | .PHONY: maintainer-clean dist-clean distclean pristine sanity |
ac966541 | 123 | all: binary doc |
094a497d | 124 | binary: library program |
9031a668 | 125 | maintainer-clean dist-clean distclean pristine sanity: veryclean |
094a497d AL |
126 | headers library clean veryclean program: |
127 | ||
f00ce0ae AL |
128 | veryclean: |
129 | echo Very Clean done for $(SUBDIR) | |
130 | clean: | |
131 | echo Clean done for $(SUBDIR) | |
b2e465d6 AL |
132 | dirs: |
133 | mkdir -p $(patsubst %/,%,$(sort $(MKDIRS))) | |
134 | ||
094a497d AL |
135 | # Header file control. We want all published interface headers to go |
136 | # into the build directory from thier source dirs. We setup some | |
137 | # search paths here | |
138 | vpath %.h $(SUBDIRS) | |
139 | $(INCLUDE)/%.h $(addprefix $(INCLUDE)/,$(addsuffix /%.h,$(HEADER_TARGETDIRS))) : %.h | |
140 | cp $< $@ | |
141 | ||
142 | # Dependency generation. We want to generate a .d file using gnu cpp. | |
143 | # For GNU systems the compiler can spit out a .d file while it is compiling, | |
144 | # this is specified with the INLINEDEPFLAG. Other systems might have a | |
145 | # makedep program that can be called after compiling, that's illistrated | |
146 | # by the DEPFLAG case. | |
147 | # Compile rules are expected to call this macro after calling the compiler | |
62c96834 AL |
148 | ifdef GCC3DEP |
149 | DFILE = $(DEP)/$(basename $(@F)).d | |
150 | else | |
151 | DFILE = $(basename $(@F)).d | |
152 | endif | |
6f27a7fc | 153 | ifdef INLINEDEPFLAG |
094a497d | 154 | define DoDep |
62c96834 AL |
155 | sed -e "1s/.*:/$(subst /,\\/,$@):/" $(DFILE) > $(DEP)/$(@F).d |
156 | #sed -e "1s/.*:/$(subst /,\\/,$@):/" $(DEP)/$(basename $(@F)).d > $(DEP)/$(@F).d | |
094a497d AL |
157 | -rm -f $(basename $(@F)).d |
158 | endef | |
159 | else | |
160 | ifdef DEPFLAG | |
161 | define DoDep | |
162 | $(CXX) $(DEPFLAG) $(CPPFLAGS) -o $@ $< | |
e1b1ae50 | 163 | sed -e "1s/.*:/$(subst /,\\/,$@):/" $(basename $(@F)).d > $(DEP)/$(@F).d |
094a497d AL |
164 | -rm -f $(basename $(@F)).d |
165 | endef | |
166 | else | |
167 | define DoDep | |
168 | endef | |
169 | endif | |
170 | endif | |
f43579d1 | 171 | |
70fbac25 | 172 | # Automatic -j support |
f43579d1 AL |
173 | ifeq ($(NUM_PROCS),1) |
174 | PARALLEL_RUN=no | |
175 | endif | |
176 | ||
42c45803 MV |
177 | # mvo: commented out, lead to build failures in the arch-build target |
178 | #ifndef PARALLEL_RUN | |
179 | # PARALLEL_RUN=yes | |
180 | # .EXPORT: PARALLEL_RUN | |
181 | # # handle recursion | |
182 | # ifneq ($(NUM_PROCS),) | |
183 | # MAKEFLAGS += -j $(NUM_PROCS) | |
184 | # endif | |
185 | #endif |