source: trunk/tools/makefile@ 10366

Last change on this file since 10366 was 10297, checked in by sandervl, 22 years ago

added pebuild

File size: 998 bytes
Line 
1# $Id: makefile,v 1.22 2003-10-24 14:52:51 sandervl Exp $
2
3#
4# Odin32 API
5#
6# Top of the tools tree makefile
7#
8#
9# Usage: nmake ( all | needed | dep | clean )
10#
11# all: Build the entire tools tree.
12# needed: Builds the tools used during compilation of the src tree.
13# dep: Make dependencies for the tools tree.
14# clean: Bring tools tree back to a "virgin" state.
15#
16#
17#
18
19
20#
21# Directory macros.
22#
23!include ../makefile.inc
24
25
26#
27# The directories included in the usual makes; all, clean, dep rules.
28#
29ALL_DIRS = \
30.\cmdqd \
31#.\profilerfix \
32.\common \
33.\fastdep \
34.\impdef \
35.\install \
36.\regedit \
37.\database \
38.\omfdumper \
39.\pebuild \
40.\sdf \
41.\wrc \
42
43
44#
45# Dummy all rule.
46#
47_all: all
48
49
50#
51# common rules.
52#
53$(COMMONRULES):
54 @$(DODIRS) "$(ALL_DIRS)" $(MAKE_CMD) $@
55
56
57#
58# compile tools needed to compile rest of the tree.
59#
60needed:
61 @$(DODIRS) "cmdqd fastdep common impdef pebuild wrc" $(MAKE_CMD)
62
63
64#
65# Do not includes the common rules.
66#
67
Note: See TracBrowser for help on using the repository browser.