diff options
author | sinanmohd <sinan@firemail.cc> | 2023-05-14 14:24:06 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-05-14 14:24:06 +0530 |
commit | 2281f142880a26dd96c666bcc26ef5c30525d671 (patch) | |
tree | 1082661dea37ca6516eb4dae727f33d5469d07e5 /7.7/Makefile | |
parent | e2785e3c53695045eef4a6d435b488e6045a087a (diff) |
7.7: initial commit
Diffstat (limited to '7.7/Makefile')
-rw-r--r-- | 7.7/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/7.7/Makefile b/7.7/Makefile new file mode 100644 index 0000000..6de9d25 --- /dev/null +++ b/7.7/Makefile @@ -0,0 +1,11 @@ +OBJECTS = main.c +CC = gcc +CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address + +find : $(OBJECTS) + $(CC) $(CFLAGS) -o find $(OBJECTS) + +.PHONY : clean + +clean : + rm -f find |