]> git.saurik.com Git - apt.git/blame - buildlib/defaults.mak
Sync
[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
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'
21# of any given module
22
23# A build directory is used by default, all generated items get put into
24# there. However unlike automake this is not done with a VPATH build
25# (vpath builds break the distinction between #include "" and #include <>)
26# but by explicly setting the BUILD variable. Make is invoked from
27# within the source itself which is much more compatible with compilation
28# environments.
118a5e95 29.SILENT:
094a497d 30
118a5e95
AL
31# Search for the build directory
32ifdef BUILD
33BUILD_POSSIBLE = $(BUILD)
34else
35BUILD_POSSIBLE = $(BASE) $(BASE)/build
36endif
37
38BUILD:= $(foreach i,$(BUILD_POSSIBLE),$(wildcard $(i)/environment.mak))
6322370b 39BUILD:= $(patsubst %/,%,$(firstword $(dir $(BUILD))))
118a5e95
AL
40
41ifeq ($(words $(BUILD)),0)
42error-all:
43 echo Can't find the build directory in $(BUILD_POSSIBLE) -- use BUILD=
094a497d
AL
44endif
45
46# Base definitions
47INCLUDE := $(BUILD)/include
48BIN := $(BUILD)/bin
49LIB := $(BIN)
3164dff9 50OBJ := $(BUILD)/obj/$(SUBDIR)
094a497d 51DEP := $(OBJ)
ac966541 52DOC := $(BUILD)/doc
094a497d
AL
53
54# Module types
ac966541
AL
55LIBRARY_H = $(BASE)/buildlib/library.mak
56DEBIANDOC_H = $(BASE)/buildlib/debiandoc.mak
57MANPAGE_H = $(BASE)/buildlib/manpage.mak
1164783d 58PROGRAM_H = $(BASE)/buildlib/program.mak
094a497d
AL
59
60# Source location control
61# SUBDIRS specifies sub components of the module that
62# may be located in subdrictories of the source dir.
63# This should be declared before including this file
64SUBDIRS+=
65
66# Header file control.
67# TARGETDIRS indicitates all of the locations that public headers
68# will be published to.
69# This should be declared before including this file
70HEADER_TARGETDIRS+=
71
72# Options
118a5e95 73include $(BUILD)/environment.mak
1164783d
AL
74CPPFLAGS+= -I$(INCLUDE)
75LDFLAGS+= -L$(LIB)
094a497d
AL
76
77# Phony rules. Other things hook these by appending to the dependency
78# list
ac966541
AL
79.PHONY: headers library clean veryclean all binary program doc
80all: binary doc
094a497d 81binary: library program
ac966541 82maintainer-clean dist-clean: veryclean
094a497d
AL
83headers library clean veryclean program:
84
85# Header file control. We want all published interface headers to go
86# into the build directory from thier source dirs. We setup some
87# search paths here
88vpath %.h $(SUBDIRS)
89$(INCLUDE)/%.h $(addprefix $(INCLUDE)/,$(addsuffix /%.h,$(HEADER_TARGETDIRS))) : %.h
90 cp $< $@
91
92# Dependency generation. We want to generate a .d file using gnu cpp.
93# For GNU systems the compiler can spit out a .d file while it is compiling,
94# this is specified with the INLINEDEPFLAG. Other systems might have a
95# makedep program that can be called after compiling, that's illistrated
96# by the DEPFLAG case.
97# Compile rules are expected to call this macro after calling the compiler
98 ifdef INLINEDEPFLAG
99 define DoDep
100 sed -e "1s/.*:/$(subst /,\\/,$@):/" $(basename $(@F)).d > $(DEP)/$(basename $(@F)).d
101 -rm -f $(basename $(@F)).d
102 endef
103else
104 ifdef DEPFLAG
105 define DoDep
106 $(CXX) $(DEPFLAG) $(CPPFLAGS) -o $@ $<
107 sed -e "1s/.*:/$(subst /,\\/,$@):/" $(basename $(@F)).d > $(DEP)/$(basename $(@F)).d
108 -rm -f $(basename $(@F)).d
109 endef
110 else
111 define DoDep
112 endef
113 endif
114endif