small fix to RISC OS makefile

git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@293 4df02467-bbd4-4a76-a152-e7ce94205b78
This commit is contained in:
marcobaye 2020-08-22 22:31:33 +00:00
parent 5b1fabc1f5
commit 88cc8cd886
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
CFLAGS = -O3 -mthrowback -mlibscl -Wall -Wstrict-prototypes
LINKFLAGS = -mlibscl -Wall
LIBS = -lm
CC = gcc
RM = rm
@ -13,7 +14,7 @@ OBJS = acme.o alu.o cliargs.o cpu.o dynabuf.o encoding.o flow.o global.o input.
all: $(PROGS)
acme: $(OBJS)
$(CC) $(CFLAGS) -o !Unsqueezed $(OBJS) $(LIBS)
$(CC) $(LINKFLAGS) -o !Unsqueezed $(OBJS) $(LIBS)
Squeeze -f -v !Unsqueezed !ACME.!RunImage
acme.o: config.h platform.h acme.h alu.h cpu.h dynabuf.h encoding.h flow.h global.h input.h macro.h mnemo.h output.h pseudoopcodes.h section.h symbol.h version.h acme.h acme.c