aboutsummaryrefslogtreecommitdiff
path: root/7.6/Makefile
diff options
context:
space:
mode:
authorsinanmohd <sinan@firemail.cc>2023-05-14 11:17:20 +0530
committersinanmohd <sinan@firemail.cc>2023-05-14 11:17:20 +0530
commitb7c333d192cfa93dcfd41275309b4cf0b60a066b (patch)
tree862a39be7f1a7adbd60e65e84c291f1ed062c73b /7.6/Makefile
parent590c098937e0cfcce4531f86807b030ee345f990 (diff)
7.6: initital commit
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