aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorc2024-01-28 22:58:01 -0500
committerc2024-01-28 22:58:01 -0500
commit0b84414bdde53b367bc28563a6936513c4d3b50c (patch)
treee7f650d47d0295049d3f5e8fa9164080dacaee45 /Makefile
parentca20ff4f4d0ac63856e538f9f4cef97197bf6465 (diff)
Macro Hell.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3bd2c39..391d5d0 100644
--- a/Makefile
+++ b/Makefile
@@ -32,10 +32,10 @@ halk: reg_options $(OBJS)
$(CC) $(OBJS) $(REG_CFLAGS) -o $(BIN).out
dbg: CFLAGS := $(DBG_CFLAGS)
-dbg: dbg_options $(OBJS)
+dbg: clean dbg_options $(OBJS)
$(CC) $(OBJS) $(DBG_CFLAGS) -o $(BIN).out
-test: clean dbg $(TEST_OUTS)
+test: $(TEST_OUTS)
set -e
for f in $(TEST_OUTS); do ./$$f; done