summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d28e100..8ddaf28 100644
--- a/Makefile
+++ b/Makefile
@@ -6,6 +6,9 @@ CFLAGS = -Wall -c
all: $(OBJS)
$(CC) $(OBJS) -o $(OUTPUT)
+debug: $(OBJS)
+ $(CC) -g $(OBJS) -o $(OUTPUT)
+
fileutil.o: fileutil.c fileutil.h
$(CC) $(CFLAGS) fileutil.c