u_ttt/Makefile
Yorick Barbanneau e6c14f6bff Level0 build into current directory
Not src/
2021-09-14 00:11:49 +02:00

25 lines
381 B
Makefile

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