aboutsummaryrefslogtreecommitdiff
path: root/8.3/Makefile
diff options
context:
space:
mode:
authorsinanmohd <sinan@firemail.cc>2023-05-17 09:14:24 +0530
committersinanmohd <sinan@firemail.cc>2023-05-18 12:41:21 +0530
commit4592fa91f80e7c131c63d35fc5e9da0b18bd7911 (patch)
treee5c6fdd9e4170bcd5b86641089f105c71c3fed62 /8.3/Makefile
parent381a56b5ef3fe1ed63ee18ffa49b16ef0ab04528 (diff)
8.3: initial commit
Diffstat (limited to '8.3/Makefile')
-rw-r--r--8.3/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/8.3/Makefile b/8.3/Makefile
new file mode 100644
index 0000000..fb8a9bb
--- /dev/null
+++ b/8.3/Makefile
@@ -0,0 +1,12 @@
+OBJECTS = main.o stdio.o
+CC = gcc
+CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address
+
+sneed : $(OBJECTS)
+ $(CC) $(CFLAGS) -o sneed $(OBJECTS)
+
+main.o : stdio.h
+
+.PHONY : clean
+clean :
+ rm -f sneed $(OBJECTS)