aboutsummaryrefslogtreecommitdiff
path: root/8.3/Makefile
diff options
context:
space:
mode:
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)