diff options
author | sinanmohd <sinan@firemail.cc> | 2023-05-18 12:44:37 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-05-18 22:28:16 +0530 |
commit | 68f15b3002235095d9649ba423069b492cf63746 (patch) | |
tree | 23a54bab6ba7fac83332dab1bb73e796e6a46435 /8.4/Makefile | |
parent | 4592fa91f80e7c131c63d35fc5e9da0b18bd7911 (diff) |
8.4: initial commit
Diffstat (limited to '8.4/Makefile')
-rw-r--r-- | 8.4/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/8.4/Makefile b/8.4/Makefile new file mode 100644 index 0000000..fb8a9bb --- /dev/null +++ b/8.4/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) |