X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=Makefile.bcc;h=89803e54ab5014ed597109909a48a9aaea30864f;hb=780eda408c43eb1674af2ea88e94bb2ed630f5d8;hp=bd460e00c3cd5fc3056fa3e8e985f7fd5b799ee5;hpb=21655f6eb51c914907a3008c47300b1ecab28acc;p=fw%2Fsdcc diff --git a/Makefile.bcc b/Makefile.bcc index bd460e00..89803e54 100644 --- a/Makefile.bcc +++ b/Makefile.bcc @@ -1,35 +1,64 @@ -all: as cpp gc ports sdcc +all: as cpp ports sdcc packihx cpp2 as: - cd as\mcs51 - make -f Makefile.bcc - cd ..\.. + cd as\mcs51 + make -f Makefile.bcc + cd ..\.. cpp: - cd support\cpp - make -f Makefile.bcc - cd ..\.. + cd support\cpp + make -f Makefile.bcc + cd ..\.. + +cpp2: + cd support\cpp2 + make -f Makefile.bcc + cd ..\.. -gc: - cd support\gc - make -f BCC_MAKEFILE gc.lib - cd ..\.. - -ports: z80 mcs51 +ports: z80 mcs51 avr ds390 pic izt xa51 z80: - cd src\z80 - make -f Makefile.bcc - cd ..\.. + cd src\z80 + make -f Makefile.bcc + cd ..\.. mcs51: - cd src\mcs51 - make -f Makefile.bcc + cd src\mcs51 + make -f Makefile.bcc + cd ..\.. + +avr: + cd src\avr + make -f Makefile.bcc + cd ..\.. + +ds390: + cd src\ds390 + make -f Makefile.bcc + cd ..\.. + +pic: + cd src\pic + make -f Makefile.bcc + cd ..\.. + +izt: + cd src\izt + make -f Makefile.bcc cd ..\.. +xa51: + cd src\xa51 + make -f Makefile.bcc + cd ..\.. + sdcc: - cd src - make -f Makefile.bcc - cd .. + cd src + make -f Makefile.bcc + cd .. +packihx: + cd packihx + make -f Makefile.bcc + cd ..