u_ttt/Makefile
2021-09-13 23:42:30 +02:00

25 lines
389 B
Makefile

## Makefile for uTicTacToe project
## --
##
# flags
CC=gcc
CFLAGS=-Wall -g -std=c99
CPPFLAGS=
all: build
build: src/utictactoe.c
$(CC) $(CFQLGS) $< -o src\utictactoe
.PHONY: clean help
clean: ## Clean files
rm -f src\*.o src\utictactoe
help:
@echo "Makefile pour UTicTacToe"
@echo "--"
@echo " all: tout compiler"
@echo "build: compiler utictactoe"
@echo "clean: nettoyer"