source: trunk/essentials/Makefile.kmk@ 3232

Last change on this file since 3232 was 3185, checked in by bird, 18 years ago

findutils

  • Property svn:keywords set to Id
File size: 2.2 KB
Line 
1# $Id: Makefile.kmk 3185 2007-04-22 08:11:20Z bird $
2## @file
3#
4# The kNIX Essentials.
5# This is not a standard kBuild makefile, the footer is not included.
6#
7# Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>
8#
9#
10# This file is part of kNIX.
11#
12# kNIX is free software; you can redistribute it and/or modify
13# it under the terms of the GNU General Public License as published by
14# the Free Software Foundation; either version 2 of the License, or
15# (at your option) any later version.
16#
17# kNIX is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with kNIX; if not, write to the Free Software
24# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25#
26#
27
28
29
30DEPTH = ..
31include $(PATH_KBUILD)/header.kmk
32
33## SUBDIRS
34# The subdirectories to traverse depth first.
35SUBDIRS = \
36 sys-devel/flex \
37 sys-devel/m4 \
38 sys-devel/automake-1.4 \
39 sys-devel/automake-1.7 \
40 sys-devel/automake-1.8 \
41 sys-devel/automake-1.9 \
42 sys-devel/automake-wrapper \
43 sys-devel/autoconf-2.13 \
44 sys-devel/autoconf \
45 sys-devel/autoconf-wrapper \
46 sys-libs/ncurses \
47 sys-apps/coreutils \
48 sys-apps/diffutils \
49 sys-apps/findutils \
50 sys-apps/sed \
51 sys-apps/gawk \
52 sys-apps/grep \
53 sys-apps/texinfo \
54
55# sys-devel/automake-1.10 - either it depends on libtool or it's not working here...
56
57## def_do_subdir
58# Generate rules to do one subdirectory.
59# @remark This is evaluated twice.
60define def_do_subdir
61
62# build and install
63subdir_$(subdir)_all:
64 +$$(MAKE) -C $(subdir)
65
66# install
67subdir_$(subdir)_install:
68 +$$(MAKE) -C $(subdir) install
69
70# packing
71subdir_$(subdir)_packing:
72 +$$(MAKE) -C $(subdir) packing
73
74.NOTPARALLEL: subdir_$(subdir)_all subdir_$(subdir)_install subdir_$(subdir)_packing
75endef
76
77$(foreach subdir,$(SUBDIRS),$(eval $(def_do_subdir)))
78
79#
80# A pass
81#
82all_subdirs: | $(foreach subdir,$(SUBDIRS), subdir_$(subdir)_all)
83
84.NOTPARALLEL: all_subdirs
85
86
87#
88# The default rule.
89#
90all_recursive: | all_subdirs
91
92.NOTPARALLEL: all_recursive
93
Note: See TracBrowser for help on using the repository browser.