From: Alan Cox Date: Wed, 29 Jun 2016 11:40:32 +0000 (+0100) Subject: Makefile: build the scc 6809 syscall tool X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=02baa765662c900859d5511022431c36638bd04d;p=FUZIX.git Makefile: build the scc 6809 syscall tool --- diff --git a/Library/Makefile b/Library/Makefile index 6f1217ba..7f722cd4 100644 --- a/Library/Makefile +++ b/Library/Makefile @@ -3,7 +3,8 @@ CFLAGS += -I../Kernel/include all: tools/syscall tools/binman tools/fcc tools/syscall_6502 \ - tools/syscall_6809 tools/binman tools/fcc tools/liberror + tools/syscall_6809 tools/syscall-scc6809 tools/binman \ + tools/fcc tools/liberror clean: rm -f tools/syscall tools/binman tools/fcc tools/fsize tools/liberror @@ -21,6 +22,9 @@ tools/syscall_6502: tools/syscall_6502.c ../Kernel/include/syscall_name.h tools/syscall_6809: tools/syscall_6809.c ../Kernel/include/syscall_name.h $(CC) $(CFLAGS) -o $@ $< +tools/syscall-scc6809: tools/syscall-scc6809.c ../Kernel/include/syscall_name.h + $(CC) $(CFLAGS) -o $@ $< + tools/binman: tools/binman.c $(CC) $(CFLAGS) -o $@ $<