diff options
author | sinanmohd <sinan@firemail.cc> | 2023-05-20 20:23:20 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-05-20 20:54:26 +0530 |
commit | 746ea2a4ed3d395a7460ce627c64a2e1a222bc7e (patch) | |
tree | 89452795548f60bff15538a92bd92b6dd8d663ae /8.8/Makefile | |
parent | 1e05635a00b545f163bc7aaeaf8aa1d37c63943d (diff) |
8.8: initial commit
Diffstat (limited to '8.8/Makefile')
-rw-r--r-- | 8.8/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/8.8/Makefile b/8.8/Makefile new file mode 100644 index 0000000..eaa18c7 --- /dev/null +++ b/8.8/Makefile @@ -0,0 +1,12 @@ +OBJECTS = main.o malloc.o +CC = gcc +CFLAGS = -g -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address + +main: $(OBJECTS) + $(CC) $(CFLAGS) -o main $(OBJECTS) + +main.o: malloc.h + +.PHONY: clean +clean: + rm -f main $(OBJECTS) |