From e9104e42332d040e9ac79fe39b2554a1df91e24f Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Sat, 5 Mar 2022 22:34:54 -0600 Subject: [PATCH] Add explicit assembly targets --- sw/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sw/Makefile b/sw/Makefile index b2a834e..15a751d 100644 --- a/sw/Makefile +++ b/sw/Makefile @@ -23,6 +23,10 @@ $(BIN): $(OBJS) %.o: %.c $(CC) $(CFLAGS) -c $< -o $@ +%.o: %.S + $(CC) $(CFLAGS) -c $< -o $@ + + .PHONY: clean clean: rm -rf $(OBJS) $(BIN) $(HEX)