VirtualBox

source: kBuild/trunk/bootstrap.gmk@ 1228

Last change on this file since 1228 was 1159, checked in by bird, 17 years ago

must regenerate configure for FreeBSD sed workaround...

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.2 KB
Line 
1# $Id: bootstrap.gmk 1159 2007-09-30 03:03:50Z bird $
2## @file
3#
4# GNU Make Compatible bootstrap Makefile.
5#
6# Copyright (c) 2007 knut st. osmundsen <[email protected]>
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# ASSUMES:
30# - BUILD_TARGET, BUILD_PLATFORM_ARCH, BUILD_PLATFORM_CPU and BUILD_TYPE in the env.
31# - PATH_KBUILD points to ./kBuild with an absolute path.
32# - PATH_KBUILD_BIN must *NOT* be defined anywhere.
33# - Current directory == bootstrap.gmk directory.
34# - mkdir -p works.
35# - ln -s works
36# - cp -f works
37# - cd somedir && command works.
38# - echo done > file works.
39# - GNU make implements CURDIR, if not please define SRCDIR.
40#
41# Tip. kBuild/env.sh (g)make -f bootstrap.kmk
42#
43#
44
45#
46# OPTIONAL:
47# Set env.var. NIX_INSTALL_DIR to /usr/local or /usr
48# (see Config.kmk and wiki for details)
49#
50
51SRCDIR = $(CURDIR)
52OUTDIR = $(SRCDIR)/out/$(BUILD_PLATFORM).$(BUILD_PLATFORM_ARCH)/$(BUILD_TYPE)/bootstrap
53
54# Override this on the make commandline if you need to (FreeBSD).
55AUTORECONF = autoreconf
56
57all: stage1 stage2
58
59
60#
61# Stage 1 - Build bootstrap kmk and sed, refresh config.h caches, link
62# up kmk_ash so $(OUTDIR)/kmk can serve as kBuild bin dir.
63#
64stage1: \
65 $(OUTDIR)/kmk/kmk \
66 $(OUTDIR)/kmk/kmk_ash \
67 $(OUTDIR)/kmk/kmk_sed \
68 $(SRCDIR)/src/kmk/config.h.$(BUILD_TARGET) \
69 $(SRCDIR)/src/sed/config.h.$(BUILD_TARGET)
70
71# kmk
72$(OUTDIR)/kmk/ts-autoreconf:
73 mkdir -p $(@D)
74 cd $(SRCDIR)/src/kmk && $(AUTORECONF) -i -v
75 echo done > $@
76
77$(OUTDIR)/kmk/ts-configured: $(OUTDIR)/kmk/ts-autoreconf
78 cd $(OUTDIR)/kmk && $(SRCDIR)/src/kmk/configure
79 echo done > $@
80
81$(OUTDIR)/kmk/config.h: $(OUTDIR)/kmk/ts-configured
82
83$(SRCDIR)/src/kmk/config.h.$(BUILD_TARGET): $(OUTDIR)/kmk/config.h
84 cp -f $(OUTDIR)/kmk/config.h $(SRCDIR)/src/kmk/config.h.$(BUILD_TARGET)
85
86$(OUTDIR)/kmk/kmk: $(OUTDIR)/kmk/ts-configured
87 $(MAKE) -C $(@D)
88
89# sed
90$(OUTDIR)/sed/ts-autoreconf:
91 mkdir -p $(@D)
92 @cd $(SRCDIR)/src/sed && $(AUTORECONF) -i -v --force
93 echo done > $@
94
95$(OUTDIR)/sed/ts-configured: $(OUTDIR)/sed/ts-autoreconf
96 cd $(OUTDIR)/sed && $(SRCDIR)/src/sed/configure --without-libintl --disable-nls
97 echo done > $@
98
99$(OUTDIR)/sed/config.h: $(OUTDIR)/sed/ts-configured
100
101$(SRCDIR)/src/sed/config.h.$(BUILD_TARGET): $(OUTDIR)/sed/config.h
102 cp -f $< $@
103
104$(OUTDIR)/sed/sed/sed: $(OUTDIR)/sed/ts-configured
105 $(MAKE) -C $(@D)/..
106
107$(OUTDIR)/kmk/kmk_sed: $(OUTDIR)/sed/sed/sed
108 cp -f $< $@
109
110$(OUTDIR)/kmk/kmk_ash:
111 ln -s /bin/sh $@
112
113#
114# Stage 2 - Build kBuild using the bootstrap tools from the previous step
115# and install it to kBuild/bin/x.y.
116#
117stage2: \
118 $(OUTDIR)/ts-stage2-build \
119 $(OUTDIR)/ts-stage2-install
120
121$(OUTDIR)/ts-stage2-build: \
122 $(SRCDIR)/src/kmk/config.h.$(BUILD_TARGET) \
123 $(SRCDIR)/src/sed/config.h.$(BUILD_TARGET) \
124 $(OUTDIR)/kmk/kmk
125 $(OUTDIR)/kmk/kmk -C $(SRCDIR)
126 echo done > $@
127
128$(OUTDIR)/ts-stage2-install: $(OUTDIR)/ts-stage2-build
129 $(OUTDIR)/kmk/kmk -C $(SRCDIR) PATH_INS=$(SRCDIR) install
130 echo done > $@
131
132
133#
134# Clean the output files...
135#
136clean:
137 rm -Rf $(SRCDIR)/out/ \
138 $(SRCDIR)/src/kmk/autom4te.cache/ \
139 $(SRCDIR)/src/sed/autom4te.cache/
140 rm -f $(SRCDIR)/src/kmk/Makefile.in \
141 $(SRCDIR)/src/kmk/config.h.in \
142 $(SRCDIR)/src/kmk/configure \
143 $(SRCDIR)/src/kmk/aclocal.m4 \
144 $(SRCDIR)/src/kmk/glob/Makefile.in \
145 $(SRCDIR)/src/kmk/config/Makefile.in \
146 $(SRCDIR)/src/kmk/config/depcomp \
147 $(SRCDIR)/src/kmk/config/compile \
148 $(SRCDIR)/src/kmk/config/missing \
149 $(SRCDIR)/src/kmk/config/config.guess \
150 $(SRCDIR)/src/kmk/config/config.sub \
151 $(SRCDIR)/src/kmk/config/install-sh \
152 $(SRCDIR)/src/kmk/w32/Makefile.in
153
154
155# can't hurt...
156.NOTPARALLEL:
157
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette