1 | # $Id: subfooter.kmk 725 2006-12-15 05:18:47Z bird $
|
---|
2 | ## @file
|
---|
3 | #
|
---|
4 | # kBuild - File included at bottom of a makefile or sub-makefile.
|
---|
5 | #
|
---|
6 | # Copyright (c) 2006 knut st. osmundsen <bird-srcspam@anduin.net>
|
---|
7 | #
|
---|
8 | #
|
---|
9 | # This file is part of kBuild.
|
---|
10 | #
|
---|
11 | # kBuild is free software; you can redistribute it and/or modify
|
---|
12 | # it under the terms of the GNU General Public License as published by
|
---|
13 | # the Free Software Foundation; either version 2 of the License, or
|
---|
14 | # (at your option) any later version.
|
---|
15 | #
|
---|
16 | # kBuild is distributed in the hope that it will be useful,
|
---|
17 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
18 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
19 | # GNU General Public License for more details.
|
---|
20 | #
|
---|
21 | # You should have received a copy of the GNU General Public License
|
---|
22 | # along with kBuild; if not, write to the Free Software
|
---|
23 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
24 | #
|
---|
25 | #
|
---|
26 |
|
---|
27 |
|
---|
28 | #
|
---|
29 | # Set the default path for all new targets.
|
---|
30 | #
|
---|
31 | define def_subheader
|
---|
32 | ifndef $(target)_PATH
|
---|
33 | $(target)_PATH := $(PATH_SUB_CURRENT)
|
---|
34 | endif
|
---|
35 | ifndef $(target)_MAKEFILE
|
---|
36 | $(target)_MAKEFILE := $(MAKEFILE_CURRENT)
|
---|
37 | endif
|
---|
38 | endef
|
---|
39 |
|
---|
40 | $(foreach target,\
|
---|
41 | $(ALL_TARGETS) \
|
---|
42 | $(FETCHES) $(FETCHES.$(BUILD_TARGET)) $(FETCHES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
|
---|
43 | $(PATCHES) $(PATCHES.$(BUILD_TARGET)) $(PATCHES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
|
---|
44 | $(BLDPROGS) $(BLDPROGS.$(BUILD_PLATFORM)) $(BLDPROGS.$(BUILD_PLATFORM).$(BUILD_PLATFORM_ARCH)) \
|
---|
45 | $(LIBRARIES) $(LIBRARIES.$(BUILD_TARGET)) $(LIBRARIES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
|
---|
46 | $(IMPORT_LIBS) $(IMPORT_LIBS.$(BUILD_TARGET)) $(IMPORT_LIBS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
|
---|
47 | $(DLLS) $(DLLS.$(BUILD_TARGET)) $(DLLS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
|
---|
48 | $(PROGRAMS) $(PROGRAMS.$(BUILD_TARGET)) $(PROGRAMS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
|
---|
49 | $(SYSMODS) $(SYSMODS.$(BUILD_TARGET)) $(SYSMODS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
|
---|
50 | $(INSTALLS) $(INSTALLS.$(BUILD_TARGET)) $(INSTALLS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
|
---|
51 | $(OTHERS) $(OTHERS.$(BUILD_TARGET)) $(OTHERS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) \
|
---|
52 | ,$(eval $(def_subheader)))
|
---|
53 |
|
---|
54 |
|
---|
55 | #
|
---|
56 | # Switch back to the context of previous makefile on the stack.
|
---|
57 | #
|
---|
58 | MAKEFILE_CURRENT := $(call stack-pop,_SUB_MAKEFILE_STACK)
|
---|
59 | PATH_SUB_CURRENT := $(abspath $(patsubst %/,%,$(dir $(MAKEFILE_CURRENT))))
|
---|
60 |
|
---|
61 | #
|
---|
62 | # When we reach the last makefile we include the footer.
|
---|
63 | #
|
---|
64 | ifeq ($(_SUB_MAKEFILE_STACK),)
|
---|
65 | include $(PATH_KBUILD)/footer.kmk
|
---|
66 | endif
|
---|
67 |
|
---|