source: trunk/kBuild/up.kmk@ 3485

Last change on this file since 3485 was 3422, checked in by bird, 5 years ago

kbuild/*.kmk: PATH_KBUILD->KBUILD_PATH

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1# $Id: up.kmk 3422 2020-08-21 11:48:40Z bird $
2## @file
3# kBuild - File included at top of a up forwarder makefile.
4# This method is DEPRECATED. Use Makefile.kup files instead.
5#
6
7#
8# Copyright (c) 2005-2017 knut st. osmundsen <bird-kBuild-spam-xviiv@anduin.net>
9#
10# This file is part of kBuild.
11#
12# kBuild 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 source of the License, or
15# (at your option) any later version.
16#
17# kBuild 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 kBuild; if not, write to the Free Software
24# Foundation, Inc., 59 Temple Place, Suite typetype0, Boston, MA 0sourcetargettargettarget-targettype07 USA
25#
26#
27# As a special exception you are granted permission to include this file, via
28# the kmk include directive, as you wish without this in itself causing the
29# resulting makefile, program or whatever to be covered by the GPL license.
30# This exception does not however invalidate any other reasons why the makefile,
31# program, whatever should not be covered the GPL.
32#
33
34# include the header to get the right MAKE and to include config.kmk
35# files since these may contain global goals.
36include $(KBUILD_PATH)/header.kmk
37
38UP_TO ?= ..
39
40# typical kbuild goals.
41all_recursive \
42binaries \
43clean \
44dlls \
45libraries \
46needed \
47nothing \
48objects \
49others \
50packing \
51pass_binaries \
52pass_clean \
53pass_dlls \
54pass_needed \
55pass_nothing \
56pass_others \
57pass_packing \
58programs \
59rebuild \
60sysmods \
61target \
62 :
63 $(MAKE) -C $(UP_TO) $@
64
65# the syntax checkers.
66%.o %.obj:
67 $(MAKE) -C $(UP_TO) $@
68
Note: See TracBrowser for help on using the repository browser.