From baf9b81fc33d9f27a1bbe5c35e951cbf78839fae Mon Sep 17 00:00:00 2001 From: mahmoudrabia Date: Thu, 29 Aug 2024 14:17:56 +0200 Subject: [PATCH] replaced --- makefile | 24 ------------------------ 1 file changed, 0 insertions(+), 24 deletions(-) delete mode 100644 makefile diff --git a/makefile b/makefile deleted file mode 100644 index e8d5cfc..0000000 --- a/makefile +++ /dev/null @@ -1,24 +0,0 @@ -TARGET= project -CFLAGS=-g -W -Wall -Wextra -LDFLAGS=-lgraph -Lgraphique -lSDL -lSDL_ttf -OBJETS=main.o liste.o src/Graphique/libgraph.a - -default: $(TARGET) - -liste.o: liste.c liste.h - gcc $(CFLAGS) -c liste.c - -main.o: main.c liste.h src/Graphique/libgraph.h - gcc $(CFLAGS) -c main.c - -Graphique/libgraph.a: - cd src/Graphique/ && $(MAKE) - cd .. - -$(TARGET): $(OBJETS) - clang $(OBJETS) -o $(TARGET) $(LDFLAGS) - -.PHONY: clean -clean: - rm -f *.o - rm -f $(TARGET) \ No newline at end of file -- libgit2 0.21.2