From 77c30047e994ff09cc68935bfaf79a6a82872d23 Mon Sep 17 00:00:00 2001 From: Warren Toomey Date: Mon, 14 Mar 2016 16:51:25 +1000 Subject: [PATCH] Get the build Makefile to output a kernel symbol table. --- build/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/Makefile b/build/Makefile index f5aa4d2..8efc8aa 100644 --- a/build/Makefile +++ b/build/Makefile @@ -13,14 +13,14 @@ run: a.rim image.fs a.rim: $(AS) -f rim -o a.rim $(SYS)/sop.s $(SYS)/s[1-8].s - $(AS) -f list -o a.lst $(SYS)/sop.s $(SYS)/s[1-8].s + $(AS) -n -f list -o a.lst $(SYS)/sop.s $(SYS)/s[1-8].s coldboot: $(AS) -f rim -o a.rim $(SYS)/sop.s $(SYS)/s[1-9].s - $(AS) -f list -o a.lst $(SYS)/sop.s $(SYS)/s[1-9].s + $(AS) -n -f list -o a.lst $(SYS)/sop.s $(SYS)/s[1-9].s image.fs: $(MKFS) --format simh proto clean: - rm -f a.rim image.fs a.lst + rm -f a.rim image.fs a.lst n.out