diff --git a/src/Makefile b/src/Makefile index cedff16..f2c2aef 100644 --- a/src/Makefile +++ b/src/Makefile @@ -8,15 +8,15 @@ RM = rm PROGS = acme BINDIR = /usr/local/bin USERBIN = $(HOME)/bin +OBJS = acme.o alu.o basics.o cliargs.o cpu.o dynabuf.o encoding.o flow.o global.o input.o label.o macro.o mnemo.o output.o platform.o section.o tree.o all: $(PROGS) -acme: acme.o alu.o basics.o cliargs.o cpu.o dynabuf.o encoding.o flow.o global.o input.o label.o macro.o mnemo.o output.o platform.o section.o tree.o - $(CC) $(LIBS) $(CFLAGS) -o acme acme.o alu.o basics.o cliargs.o cpu.o dynabuf.o encoding.o flow.o global.o input.o label.o macro.o mnemo.o output.o platform.o section.o tree.o +acme: $(OBJS) + $(CC) $(CFLAGS) -o acme $(OBJS) $(LIBS) strip acme - acme.o: config.h platform.h acme.h alu.h basics.h cpu.h dynabuf.h encoding.h flow.h global.h input.h label.h macro.h mnemo.h output.h section.h acme.h acme.c alu.o: config.h platform.h cpu.h dynabuf.h encoding.h global.h input.h label.h section.h tree.h alu.h alu.c diff --git a/src/Makefile.dos b/src/Makefile.dos index e4d1b01..cb55c89 100644 --- a/src/Makefile.dos +++ b/src/Makefile.dos @@ -8,11 +8,12 @@ RM = rm PROGS = acme #BINDIR = /usr/local/bin #USERBIN = $(HOME)/bin +OBJS = acme.o alu.o cliargs.o cpu.o dynabuf.o encoding.o flow.o global.o input.o label.o macro.o mnemo.o output.o platform.o section.o tree.o all: $(PROGS) -acme: acme.o alu.o cliargs.o cpu.o dynabuf.o encoding.o flow.o global.o input.o label.o macro.o mnemo.o output.o platform.o section.o tree.o - $(CC) $(LIBS) $(CFLAGS) -o acme.out acme.o alu.o cliargs.o cpu.o dynabuf.o encoding.o flow.o global.o input.o label.o macro.o mnemo.o output.o platform.o section.o tree.o +acme: $(OBJS) + $(CC) $(CFLAGS) -o acme.out $(OBJS) $(LIBS) copy /b \djgpp\bin\pmodstub.exe + acme.out acmepmod.exe djp acme.exe djp acmepmod.exe diff --git a/src/Makefile.riscos b/src/Makefile.riscos index 08403ce..be65a94 100644 --- a/src/Makefile.riscos +++ b/src/Makefile.riscos @@ -8,15 +8,14 @@ RM = rm PROGS = acme #BINDIR = /usr/local/bin #USERBIN = $(HOME)/bin +OBJS = acme.o alu.o basics.o cliargs.o cpu.o dynabuf.o encoding.o flow.o global.o input.o label.o macro.o mnemo.o output.o platform.o section.o tree.o all: $(PROGS) -acme: acme.o alu.o basics.o cliargs.o cpu.o dynabuf.o encoding.o flow.o global.o input.o label.o macro.o mnemo.o output.o platform.o section.o tree.o - $(CC) $(LIBS) $(CFLAGS) -o !Unsqueezed acme.o alu.o basics.o cliargs.o cpu.o dynabuf.o encoding.o flow.o global.o input.o label.o macro.o mnemo.o output.o platform.o section.o tree.o +acme: $(OBJS) + $(CC) $(CFLAGS) -o !Unsqueezed $(OBJS) $(LIBS) Squeeze -f -v !Unsqueezed !ACME.!RunImage - - acme.o: config.h platform.h acme.h alu.h basics.h cpu.h dynabuf.h encoding.h flow.h global.h input.h label.h macro.h mnemo.h output.h section.h acme.h acme.c alu.o: config.h platform.h cpu.h dynabuf.h encoding.h global.h input.h label.h section.h tree.h alu.h alu.c diff --git a/src/acme.c b/src/acme.c index dcdcb4e..3d260fc 100644 --- a/src/acme.c +++ b/src/acme.c @@ -17,9 +17,10 @@ #define RELEASE "0.94.2" // update before release (FIXME) #define CODENAME "Zarquon" // update before release -#define CHANGE_DATE "28 Sep" // update before release -#define CHANGE_YEAR "2011" // update before release -#define HOME_PAGE "http://home.pages.de/~mac_bacon/smorbrod/acme/" // FIXME +#define CHANGE_DATE "28 Feb" // update before release +#define CHANGE_YEAR "2012" // update before release +//#define HOME_PAGE "http://home.pages.de/~mac_bacon/smorbrod/acme/" // FIXME +#define HOME_PAGE "http://sourceforge.net/p/acme-crossass/" // FIXME #include #include