From: kvigor Date: Tue, 19 Sep 2000 03:54:44 +0000 (+0000) Subject: Get Borland C++ Makefiles working again X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=6f11c54ec92ddcaa80492984aa74f4280afac125;p=fw%2Fsdcc Get Borland C++ Makefiles working again git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@380 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/Makefile.bcc b/Makefile.bcc index 5a68e334..e7b8cd24 100644 --- a/Makefile.bcc +++ b/Makefile.bcc @@ -15,7 +15,7 @@ gc: make -f BCC_MAKEFILE gc.lib cd ..\.. -ports: z80 mcs51 avr +ports: z80 mcs51 avr ds390 z80: cd src\z80 @@ -32,6 +32,11 @@ avr: make -f Makefile.bcc cd ..\.. +ds390: + cd src\ds390 + make -f Makefile.bcc + cd ..\.. + sdcc: cd src make -f Makefile.bcc diff --git a/src/Makefile.bcc b/src/Makefile.bcc index 719fbeac..a305b00d 100644 --- a/src/Makefile.bcc +++ b/src/Makefile.bcc @@ -7,8 +7,8 @@ PRJDIR = .. # !include $(PRJDIR)/Makefile.common -PORTS = mcs51 z80 avr -PORT_LIBS = mcs51/port.lib z80/port.lib avr/port.lib +PORTS = mcs51 z80 avr ds390 +PORT_LIBS = mcs51/port.lib z80/port.lib avr/port.lib ds390/port.lib LIBS = -lgc LIBDIRS = -L$(PRJDIR)/support/gc diff --git a/src/SDCCglobl.h b/src/SDCCglobl.h index 1c417dec..f0e2eb83 100644 --- a/src/SDCCglobl.h +++ b/src/SDCCglobl.h @@ -184,7 +184,7 @@ enum { /* other command line options */ struct options { - int model; ; /* see MODEL_* defines above */ + int model; /* see MODEL_* defines above */ int stackAuto : 3 ; /* Stack Automatic */ int useXstack : 3 ; /* use Xternal Stack */ int stack10bit : 3; /* use 10 bit stack (flat24 model only) */