removed non existing cpp project and non compilable izt project from makefile
[fw/sdcc] / Makefile.bcc
1 all: as ports sdcc packihx cpp2
2
3 as:
4         cd as\mcs51
5         make -f Makefile.bcc
6         cd ..\..
7
8 cpp2:
9         cd support\cpp2
10         make -f Makefile.bcc
11         cd ..\..
12
13 ports: z80 mcs51 avr ds390 pic xa51
14
15 z80:
16         cd src\z80
17         make -f Makefile.bcc
18         cd ..\..
19
20 mcs51:
21         cd src\mcs51
22         make -f Makefile.bcc
23         cd ..\..
24
25 avr:
26         cd src\avr
27         make -f Makefile.bcc
28         cd ..\..
29
30 ds390:
31         cd src\ds390
32         make -f Makefile.bcc
33         cd ..\..
34
35 pic:
36         cd src\pic
37         make -f Makefile.bcc
38         cd ..\..
39
40 xa51:
41         cd src\xa51
42         make -f Makefile.bcc
43         cd ..\..
44
45 sdcc:
46         cd src
47         make -f Makefile.bcc
48         cd ..
49
50 packihx:
51         cd packihx
52         make -f Makefile.bcc
53         cd ..