diff options
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 |