5 lines
113 B
Makefile
Executable File
5 lines
113 B
Makefile
Executable File
all: build run
|
|
build:
|
|
g++ -Wall -pthread -o main test/${MODE}/main.cpp src/*.cpp -lpigpio -lrt
|
|
run:
|
|
sudo ./main
|