source: trunk/src/msvcrt/makefile@ 21787

Last change on this file since 21787 was 21536, checked in by abwillis, 15 years ago

Ticket #21 add cleanall to makefile rules to prevent cleanall failing at that point.

File size: 755 bytes
Line 
1# $Id: makefile,v 1.23 2003-01-10 13:13:49 sandervl Exp $
2
3#
4# Odin32 API
5#
6# msvcrt.dll, msvcrt20.dll and msvcrt40.dll makefile
7#
8
9CCENV = EMX
10
11#
12# Compiler, tools, and interference rules.
13#
14!include ../../makefile.inc
15
16
17#
18# Generic rules which forwards to the real makefiles.
19# The all rule has to stand alone, else make will make all the rules if it
20# is invoked without any target.
21#
22_all: all
23
24all clean cleanall lib: # add all common rules here
25!ifdef BUILD_MSVCRT
26 $(MAKE_CMD) -f msvcrt.mak $@
27 $(MAKE_CMD) -f msvcrt20.mak $@
28 $(MAKE_CMD) -f msvcrt40.mak $@
29!endif
30 $(MAKE_CMD) -f minivcrt.mak $@
31
32# don't have to make deps more than once.
33dep:
34 $(MAKE_CMD) -f msvcrt.mak $@
35
36
37#
38# Do not includes the common rules.
39#
40
Note: See TracBrowser for help on using the repository browser.