From 14914f50c3de6c5444e13cf67db064b03c1c90ef Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 16 Jul 2019 12:58:13 +0200 Subject: c09 passed, c10 start, exam00 and exam01 --- c10/ex00/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'c10/ex00/Makefile') diff --git a/c10/ex00/Makefile b/c10/ex00/Makefile index e69de29..6ee330b 100644 --- a/c10/ex00/Makefile +++ b/c10/ex00/Makefile @@ -0,0 +1,17 @@ +OUT = ft_display_file +CC = gcc +CCFLAGS = -Wall -Wextra -Werror + +.PHONY: all +all: $(OUT) + +$(OUT): main.c + $(CC) $(CCFLAGS) -o $(OUT) main.c + +.PHONY: clean +clean: + +.PHONY: clean +fclean: clean + rm -f $(OUT) + -- cgit