mirror of
https://github.com/AntoineHX/LivingMachine.git
synced 2025-05-04 13:50:46 +02:00
test moteurs ok
This commit is contained in:
parent
746a5227b5
commit
4bf5661a84
8 changed files with 187 additions and 38 deletions
17
Test moteurs/Makefile~
Normal file
17
Test moteurs/Makefile~
Normal file
|
@ -0,0 +1,17 @@
|
|||
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)
|
Loading…
Add table
Add a link
Reference in a new issue