Skip to content
Snippets Groups Projects
Makefile.txt 216 B
Newer Older
all: Demo

Demo: Button.o MPU.o
g++ -o Demo Source.cpp Button.o MPU.o -l mraa

Button.o: buttonInterrupt.cpp
g++ -c -o Button.o buttonInterrupt.cpp

MPU.o: MPU9250.cpp
g++ -c -o MPU.o MPU9250.cpp

clean:
rm *.o Demo