Master Borland C++ makefile
[fw/sdcc] / Makefile.bcc
1 all: as cpp gc ports sdcc
2
3 as:
4         cd as\mcs51
5         make -f Makefile.bcc
6         cd ..\..
7
8 cpp:
9         cd support\cpp
10         make -f Makefile.bcc
11         cd ..\..
12
13 gc:
14         cd support\gc
15         make -f BCC_MAKEFILE gc.lib
16         cd ..\..
17
18 ports: z80 mcs51
19
20 z80:
21         cd src\z80
22         make -f Makefile.bcc
23         cd ..\..
24
25 mcs51:
26         cd src\mcs51
27         make -f Makefile.bcc
28         cd ..\..
29
30 sdcc:
31         cd src
32         make -f Makefile.bcc
33         cd ..
34
35