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