Borland make apparebtly dislikes trailing whitespace...
[fw/sdcc] / Makefile.bcc
1 all: as cpp ports sdcc packihx cpp2
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 cpp2:
14         cd support\cpp2
15         make -f Makefile.bcc
16         cd ..\..
17
18 ports: z80 mcs51 avr ds390 pic izt
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 pic:
41         cd src\pic
42         make -f Makefile.bcc
43         cd ..\..
44
45 izt:
46         cd src\izt
47         make -f Makefile.bcc
48         cd ..\..
49
50 sdcc:
51         cd src
52         make -f Makefile.bcc
53         cd ..
54
55 packihx:
56         cd packihx
57         make -f Makefile.bcc
58         cd ..
59