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

17 lines
166 B
Makefile

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