Suppresion fichier inutile, Changement makefile, Debut SFML, Ajout mode CONFIG/SFML

This commit is contained in:
AntoineUPMC 2017-05-02 18:17:11 +02:00
parent 166879222f
commit 71756d4954
43 changed files with 152 additions and 3821 deletions

14
Code/Makefile~ Normal file
View file

@ -0,0 +1,14 @@
all : KirbyTrack
KirbyTrack : KirbyTrack.o
gcc -o $@ $< `pkg-config opencv --libs` -lsfml-graphics -lsfml-window -lsfml-audio -lsfml-system
KirbyTrack.o : KirbyTrack.c
gcc -o $@ -c $< `pkg-config opencv --cflags`
clean:
rm -rf *.o
mrproper : clean
rm -rf KirbyTrack