mirror of
https://github.com/AntoineHX/LivingMachine.git
synced 2025-05-03 13:20:45 +02:00
14 lines
277 B
Makefile
14 lines
277 B
Makefile
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
|