From eed7c21971ef96badc5223475f96c625573942a0 Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Thu, 10 Mar 2022 10:29:34 -0600 Subject: [PATCH] Update Makefile Change lists to not have trailing slash Remove listing folder during clean --- sw/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sw/Makefile b/sw/Makefile index 87980e3..d330e0c 100644 --- a/sw/Makefile +++ b/sw/Makefile @@ -7,7 +7,7 @@ NAME=bootrom BIN=$(NAME).bin HEX=$(NAME).hex -LISTS=lists/ +LISTS=lists SRCS=$(wildcard *.s) $(wildcard *.c) OBJS+=$(patsubst %.s,%.o,$(filter %s,$(SRCS))) @@ -33,5 +33,5 @@ $(LISTS): .PHONY: clean clean: - rm -rf $(OBJS) $(BIN) $(HEX) + rm -rf $(OBJS) $(BIN) $(HEX) $(LISTS)