diff options
author | c | 2024-01-28 22:58:01 -0500 |
---|---|---|
committer | c | 2024-01-28 22:58:01 -0500 |
commit | 0b84414bdde53b367bc28563a6936513c4d3b50c (patch) | |
tree | e7f650d47d0295049d3f5e8fa9164080dacaee45 /Makefile | |
parent | ca20ff4f4d0ac63856e538f9f4cef97197bf6465 (diff) |
Macro Hell.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |