aboutgitcodebugslistschat
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6d96f47..e5942dc 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,13 @@
CFLAGS += -Wall -Wextra -pedantic
-all: merd
+all: merd qrap
-merd: merd.c
+merd: merd.c merd.h
$(CC) $(CFLAGS) merd.c -o merd
+qrap: qrap.c merd.h
+ $(CC) $(CFLAGS) qrap.o -o qrap
+
.PHONY: clean
clean:
- -${RM} merd
+ -${RM} merd qrap