summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/amd64/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/arch/amd64/Makefile b/sys/arch/amd64/Makefile
index 1090a38..1c5f8f2 100644
--- a/sys/arch/amd64/Makefile
+++ b/sys/arch/amd64/Makefile
@@ -1,3 +1,6 @@
+.SILENT:
+override PROMPT := printf "%s\t\t%s\n"
+
CC =
LD =
SYS_CFLAGS =
@@ -10,6 +13,7 @@ all: $(ASMOBJS)
$(LD) -Tconf/link.ld $(MISC_OFILES) -o ../../rv7
%.S.o: %.S
+ $(PROMPT) " [AS] " $<
$(CC) -c $(SYS_CFLAGS) $< -o $@
.PHONY: clean