summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-10-12 20:46:24 -0400
committerIan Moffett <ian@osmora.org>2025-10-12 20:50:53 -0400
commitbb30630206d4386b39ebad49db8c91bc4c202f5c (patch)
treefb79a3eb79bc80c7a1affa153ffcb641fe2b0b1f
parentf97bc605512c482936f09410c95f4af2cc8d3b58 (diff)
build: Fix build warnings
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r--emux64/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/emux64/Makefile b/emux64/Makefile
index 8455235..c66d461 100644
--- a/emux64/Makefile
+++ b/emux64/Makefile
@@ -8,8 +8,8 @@ all: $(OFILES)
mkdir -p bin/
$(CC) $^ $(CFLAGS) -o bin/emux
-%.c: %.o
- $(CC) -c $< $(CFLAGS)
+%.o: %.c
+ $(CC) -c $< $(CFLAGS) -o $@
.PHONY: clean
clean: