]> git.saurik.com Git - apt.git/blame - buildlib/defaults.mak
Fix typo
[apt.git] / buildlib / defaults.mak
CommitLineData
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
f30c4b6a
DK
9# This works out very well and allows a good degree of flexibility.
10# To accommodate some of the features we introduce the concept of
094a497d
AL
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)
f30c4b6a
DK
14# This works very well but it is important to remember that within
15# a rule the LOCAL var is unavailable, it will have to be constructed
16# from the information in the rule invocation. For stock rules like
094a497d
AL
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
f30c4b6a 23# with the generated names will provide a very powerful 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 <>)
f30c4b6a 28# but by explicitly setting the BUILD variable. Make is invoked from
094a497d
AL
29# within the source itself which is much more compatible with compilation
30# environments.
93bf083d 31ifndef NOISY
118a5e95 32.SILENT:
93bf083d 33endif
094a497d 34
118a5e95
AL
35# Search for the build directory
36ifdef BUILD
93641593 37BUILD_POSSIBLE := $(BUILD) $(BASE)/$(BUILD)
118a5e95 38else
f40e3a64 39BUILD_POSSIBLE := $(BASE) $(BASE)/build-$(shell uname -m) $(BASE)/build
118a5e95
AL
40endif
41
93641593 42BUILDX:= $(foreach i,$(BUILD_POSSIBLE),$(wildcard $(i)/environment.mak*))
118a5e95 43
93641593 44ifeq ($(words $(BUILDX)),0)
101030ab
AL
45
46# Check for a busted wildcard function. We use this function in several
47# places, it must work.
48ifeq ($(words $(wildcard *)),0)
49error-all/environment.mak:
50 echo You have a broken version of GNU Make - upgrade.
70fbac25 51 error-out-and-die
101030ab
AL
52else
53error-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
56endif
57
101030ab
AL
58# Force include below to come to the error target
59BUILDX := error-all
60else
61BUILDX:= $(patsubst %/,%,$(firstword $(dir $(BUILDX))))
62endif
63
93641593
AL
64override BUILD := $(BUILDX)
65
094a497d
AL
66# Base definitions
67INCLUDE := $(BUILD)/include
68BIN := $(BUILD)/bin
69LIB := $(BIN)
3164dff9 70OBJ := $(BUILD)/obj/$(SUBDIR)
094a497d 71DEP := $(OBJ)
93bf083d 72DOC := $(BUILD)/docs
80948457
AL
73PO := $(BUILD)/po
74LOCALE := $(BUILD)/locale
75PO_DOMAINS := $(BUILD)/po/domains
094a497d
AL
76
77# Module types
ac966541
AL
78LIBRARY_H = $(BASE)/buildlib/library.mak
79DEBIANDOC_H = $(BASE)/buildlib/debiandoc.mak
80MANPAGE_H = $(BASE)/buildlib/manpage.mak
1164783d 81PROGRAM_H = $(BASE)/buildlib/program.mak
b2e465d6 82PYTHON_H = $(BASE)/buildlib/python.mak
c3c459fc 83COPY_H = $(BASE)/buildlib/copy.mak
8a9ec519 84YODL_MANPAGE_H = $(BASE)/buildlib/yodl_manpage.mak
b2e465d6 85SGML_MANPAGE_H = $(BASE)/buildlib/sgml_manpage.mak
b01390ea 86PO4A_MANPAGE_H = $(BASE)/buildlib/po4a_manpage.mak
24f6490f 87XML_MANPAGE_H = $(BASE)/buildlib/xml_manpage.mak
b2e465d6 88FAIL_H = $(BASE)/buildlib/fail.mak
80948457 89PODOMAIN_H = $(BASE)/buildlib/podomain.mak
094a497d 90
b0c76450 91include $(BUILD)/environment.mak
f58a97d3 92
e1b1ae50
AL
93ifdef STATICLIBS
94LIBRARY_H += $(BASE)/buildlib/staticlibrary.mak
95endif
96
c1a22377
AL
97ifdef ONLYSTATICLIBS
98LIBRARY_H = $(BASE)/buildlib/staticlibrary.mak
99endif
100
094a497d
AL
101# Source location control
102# SUBDIRS specifies sub components of the module that
f30c4b6a 103# may be located in subdirectories of the source dir.
094a497d
AL
104# This should be declared before including this file
105SUBDIRS+=
106
107# Header file control.
f30c4b6a 108# TARGETDIRS indicates all of the locations that public headers
094a497d
AL
109# will be published to.
110# This should be declared before including this file
111HEADER_TARGETDIRS+=
112
113# Options
1164783d
AL
114CPPFLAGS+= -I$(INCLUDE)
115LDFLAGS+= -L$(LIB)
094a497d 116
b2e465d6 117# Directors to create
80948457 118MKDIRS := $(BIN)
b2e465d6 119
094a497d
AL
120# Phony rules. Other things hook these by appending to the dependency
121# list
b2e465d6 122.PHONY: headers library clean veryclean all binary program doc dirs
93641593 123.PHONY: maintainer-clean dist-clean distclean pristine sanity
ac966541 124all: binary doc
094a497d 125binary: library program
9031a668 126maintainer-clean dist-clean distclean pristine sanity: veryclean
094a497d
AL
127headers library clean veryclean program:
128
f00ce0ae
AL
129veryclean:
130 echo Very Clean done for $(SUBDIR)
131clean:
132 echo Clean done for $(SUBDIR)
b2e465d6
AL
133dirs:
134 mkdir -p $(patsubst %/,%,$(sort $(MKDIRS)))
135
094a497d 136# Header file control. We want all published interface headers to go
f30c4b6a 137# into the build directory from their source dirs. We setup some
094a497d
AL
138# search paths here
139vpath %.h $(SUBDIRS)
140$(INCLUDE)/%.h $(addprefix $(INCLUDE)/,$(addsuffix /%.h,$(HEADER_TARGETDIRS))) : %.h
141 cp $< $@
142
143# Dependency generation. We want to generate a .d file using gnu cpp.
144# For GNU systems the compiler can spit out a .d file while it is compiling,
145# this is specified with the INLINEDEPFLAG. Other systems might have a
f30c4b6a 146# makedep program that can be called after compiling, that's illustrated
094a497d
AL
147# by the DEPFLAG case.
148# Compile rules are expected to call this macro after calling the compiler
62c96834
AL
149ifdef GCC3DEP
150DFILE = $(DEP)/$(basename $(@F)).d
151else
152DFILE = $(basename $(@F)).d
153endif
6f27a7fc 154ifdef INLINEDEPFLAG
094a497d 155 define DoDep
62c96834
AL
156 sed -e "1s/.*:/$(subst /,\\/,$@):/" $(DFILE) > $(DEP)/$(@F).d
157 #sed -e "1s/.*:/$(subst /,\\/,$@):/" $(DEP)/$(basename $(@F)).d > $(DEP)/$(@F).d
094a497d
AL
158 -rm -f $(basename $(@F)).d
159 endef
160else
161 ifdef DEPFLAG
162 define DoDep
163 $(CXX) $(DEPFLAG) $(CPPFLAGS) -o $@ $<
e1b1ae50 164 sed -e "1s/.*:/$(subst /,\\/,$@):/" $(basename $(@F)).d > $(DEP)/$(@F).d
094a497d
AL
165 -rm -f $(basename $(@F)).d
166 endef
167 else
168 define DoDep
169 endef
170 endif
171endif
f43579d1 172
70fbac25 173# Automatic -j support
f43579d1
AL
174ifeq ($(NUM_PROCS),1)
175 PARALLEL_RUN=no
176endif
177
42c45803
MV
178# mvo: commented out, lead to build failures in the arch-build target
179#ifndef PARALLEL_RUN
180# PARALLEL_RUN=yes
181# .EXPORT: PARALLEL_RUN
182# # handle recursion
183# ifneq ($(NUM_PROCS),)
184# MAKEFLAGS += -j $(NUM_PROCS)
185# endif
186#endif