aboutsummaryrefslogtreecommitdiff
path: root/7.4/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '7.4/Makefile')
-rw-r--r--7.4/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/7.4/Makefile b/7.4/Makefile
new file mode 100644
index 0000000..968458a
--- /dev/null
+++ b/7.4/Makefile
@@ -0,0 +1,11 @@
+OBJECTS = main.o mscanf.o
+CC = gcc
+CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address
+
+scan : $(OBJECTS)
+ $(CC) $(CFLAGS) -o scan $(OBJECTS)
+
+.PHONY : clean
+
+clean :
+ rm -f scan $(OBJECTS)