Add support for packihx to Borland makefiles
[fw/sdcc] / Makefile.bcc
1 all: as cpp gc ports sdcc packihx
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 avr ds390
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 avr:
31         cd src\avr
32         make -f Makefile.bcc
33         cd ..\..
34
35 ds390:
36         cd src\ds390
37         make -f Makefile.bcc
38         cd ..\..
39
40 sdcc:
41         cd src
42         make -f Makefile.bcc
43         cd ..
44
45 packihx:
46         cd packihx
47         make -f Makefile.bcc
48         cd ..
49