]> git.sur5r.net Git - cc65/blob - src/make/watcom.mak
Watcom/NT fixes
[cc65] / src / make / watcom.mak
1 #
2 # Watcom Makefile for the cc65 binutils
3 #
4
5 SUBDIRS =               \
6         common          \
7         ar65            \
8         ca65            \
9         ld65
10
11 all:
12         cd common
13         make -f make\watcom.mak
14         cd ..\ar65
15         make -f make\watcom.mak
16         cd ..\ca65
17         make -f make\watcom.mak
18         cd ..\cc65
19         make -f make\watcom.mak
20         cd ..\cl65
21         make -f make\watcom.mak
22         cd ..\ld65
23         make -f make\watcom.mak
24         cd ..
25
26 clean:
27         cd common
28         make -f make\watcom.mak clean
29         cd ..\ar65
30         make -f make\watcom.mak clean
31         cd ..\ca65
32         make -f make\watcom.mak clean
33         cd ..\cc65
34         make -f make\watcom.mak clean
35         cd ..\cl65
36         make -f make\watcom.mak clean
37         cd ..\ld65
38         make -f make\watcom.mak clean
39         cd ..
40
41 strip:
42         @cd ar65
43         @-make -f make\watcom.mak strip
44         @cd ..\ca65
45         @-make -f make\watcom.mak strip
46         @cd ..\cc65
47         @-make -f make\watcom.mak strip
48         @cd ..\cl65
49         @-make -f make\watcom.mak strip
50         @cd ..\ld65
51         @-make -f make\watcom.mak strip
52         @cd ..
53
54
55