LivingMachine/Test moteurs/Makefile~

18 lines
166 B
Makefile
Raw Normal View History

2017-05-09 00:33:05 +02:00
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)