aboutsummaryrefslogtreecommitdiff
path: root/7.4/Makefile
diff options
context:
space:
mode:
authorsinanmohd <sinan@firemail.cc>2023-05-13 11:44:19 +0530
committersinanmohd <sinan@firemail.cc>2023-05-13 12:29:31 +0530
commite0b9da43b6311aa4413d030b27c6cdab000aeafd (patch)
tree13935b6213f5a81d4ede15893405f91dd2b453ed /7.4/Makefile
parent8a00a65c66914b7dbbf7c3c594d94698f11629dc (diff)
7.4: initial commit
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)