aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorame <[email protected]>2024-05-08 10:55:05 -0500
committerame <[email protected]>2024-05-08 10:55:05 -0500
commit34e6285c3d3bdb31eb476d13d4d083757a51bfe6 (patch)
treefe96557b26207bb35b9330d2886eb7ee30f82bfb /makefile
parentf98fbf1ab34a8ff17daa5d51cbbdb6185f8065f7 (diff)
work on threads
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/makefile b/makefile
index 8dc9205..3c5b82f 100644
--- a/makefile
+++ b/makefile
@@ -18,6 +18,11 @@ all: $(TARGET)
debug: CFLAGS += -g
debug: all
+reg:
+ rm src/reg.o
+
+reg: all
+
%.o: %.c
$(CC) -c $< -o $@ $(CFLAGS)