mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-16 17:40:46 -04:00
slop
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
CXX ?= g++
|
||||
|
||||
# The bridge deliberately uses the stable Linux input and Bluetooth management
|
||||
# ABIs directly. Keeping it free of third-party libraries makes installation on
|
||||
# the Fedora server predictable and avoids binding the rover service to an old
|
||||
# Wii-specific userspace package.
|
||||
CXXFLAGS ?= -O2 -std=c++17 -Wall -Wextra -pedantic
|
||||
LDLIBS += -pthread
|
||||
|
||||
TARGET := balance_board_worker
|
||||
SRC := balance_board_worker.cpp
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
$(TARGET): $(SRC)
|
||||
$(CXX) $(CXXFLAGS) -o $@ $< $(LDLIBS)
|
||||
|
||||
clean:
|
||||
rm -f $(TARGET)
|
||||
Reference in New Issue
Block a user