From 967be9e750221ab2ab783f95df79bb26d290a45e Mon Sep 17 00:00:00 2001 From: Martial Simon Date: Mon, 15 Sep 2025 01:07:58 +0200 Subject: add: added projects --- myfind/simple_stat/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 myfind/simple_stat/Makefile (limited to 'myfind/simple_stat/Makefile') diff --git a/myfind/simple_stat/Makefile b/myfind/simple_stat/Makefile new file mode 100644 index 0000000..f38f031 --- /dev/null +++ b/myfind/simple_stat/Makefile @@ -0,0 +1,15 @@ +CC = gcc +CFLAGS = -std=c99 -pedantic -Werror -Wall -Wextra -Wvla + +SRC = simple_stat.c +OBJ = $(SRC:.c=.o) + +all: $(OBJ) + $(CC) -o simple_stat $(OBJ) + +$(OBJ): $(SRC) + +.PHONY: clean + +clean : + $(RM) $(OBJ) simple_stat -- cgit v1.2.3