From e6c14f6bff15677266aa93106e0b4d7ab83a6ce4 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Tue, 14 Sep 2021 00:11:49 +0200 Subject: [PATCH] Level0 build into current directory Not src/ --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cccbcd6..0d9b405 100644 --- a/Makefile +++ b/Makefile @@ -10,12 +10,12 @@ CPPFLAGS= all: build build: src/utictactoe.c - $(CC) $(CFQLGS) $< -o src\utictactoe + $(CC) $(CFQLGS) $< -o utictactoe .PHONY: clean help clean: ## Clean files - rm -f src\*.o src\utictactoe + rm -f src\*.o utictactoe help: @echo "Makefile pour UTicTacToe"