X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=Makefile.bcc;h=0428a19bb0fcdacb85010cba4dc9dc7064b8ed3d;hb=bc418093a0c8d0a66fe8dee7970a6be51d0b69c8;hp=e3c4ac5f4bf02ebbb23377990642153dea70800e;hpb=b1002dc6031ca9c446997fd4aa5695617bd82fef;p=fw%2Fsdcc diff --git a/Makefile.bcc b/Makefile.bcc index e3c4ac5f..0428a19b 100644 --- a/Makefile.bcc +++ b/Makefile.bcc @@ -1,49 +1,40 @@ -all: as cpp gc ports sdcc packihx +# Makefile for Borlad C++ -as: - cd as\mcs51 - make -f Makefile.bcc - cd ..\.. +all: config asx8051 as-z80 sdcc packihx cpp2 -cpp: - cd support\cpp - make -f Makefile.bcc - cd ..\.. -gc: - cd support\gc - make -f BCC_MAKEFILE gc.lib - cd ..\.. +config: sdcc_vc.h -ports: z80 mcs51 avr ds390 +sdcc_vc.h: sdcc_vc_in.h configure_vc.awk + gawk -f configure_vc.awk sdcc_vc_in.h > sdcc_vc.h -z80: - cd src\z80 - make -f Makefile.bcc - cd ..\.. +asx8051: + cd as\mcs51 + make -f Makefile.bcc + cd ..\.. -mcs51: - cd src\mcs51 - make -f Makefile.bcc - cd ..\.. +as-z80: + cd as\z80 + make -f Makefile.bcc + cd ..\.. -avr: - cd src\avr - make -f Makefile.bcc - cd ..\.. - -ds390: - cd src\ds390 - make -f Makefile.bcc - cd ..\.. +cpp2: + cd support\cpp2 + 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 .. + cd packihx + make -f Makefile.bcc + cd .. + +librarian: + cd support\librarian + make -f Makefile.bcc + cd ..\..