LivingMachine/Test moteurs/Makefile
2017-05-09 00:33:05 +02:00

17 lines
169 B
Makefile

CC=gcc
CFLAGS=-Wall -g
LDFLAGS=
EXEC=moteur
all: $(EXEC)
moteur : moteur.c
gcc -o $@ $^
.PHONY: clean mrproper
clean:
rm -rf *.o
mrproper: clean
rm -rf $(EXEC)