diff options
author | sinanmohd <sinan@firemail.cc> | 2023-05-16 12:33:11 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-05-16 23:59:28 +0530 |
commit | 381a56b5ef3fe1ed63ee18ffa49b16ef0ab04528 (patch) | |
tree | d2b408a8de95a35b126be170cbad739843a1135f /8.2/Makefile | |
parent | 2a5a57e16f216a9bf8933345014c91f198bb1215 (diff) |
8.2: initial commit
Diffstat (limited to '8.2/Makefile')
-rw-r--r-- | 8.2/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/8.2/Makefile b/8.2/Makefile new file mode 100644 index 0000000..e77912f --- /dev/null +++ b/8.2/Makefile @@ -0,0 +1,13 @@ +OBJECTS = main.o stdio.o +CC = gcc +CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address + +exe : $(OBJECTS) + $(CC) $(CFLAGS) -o exe $(OBJECTS) + +main.o : stdio.h + +.PHONY : clean + +clean : + rm -f exe $(OBJECTS) |