upload previous file

This commit is contained in:
2026-08-07 13:48:39 +09:00
parent 7b801d2721
commit 4fbe036427
8 changed files with 706 additions and 3 deletions
+16
View File
@@ -0,0 +1,16 @@
CXX = g++
CXXFLAGS = -O3 -std=c++17 -Wall -Wextra
LIBS = -lSDL2 -lpthread
TARGET = xbox_motor_control_cpp
SRC = xbox_motor_control.cpp
all: $(TARGET)
$(TARGET): $(SRC)
$(CXX) $(CXXFLAGS) $(SRC) $(LIBS) -o $(TARGET)
clean:
rm -f $(TARGET)
.PHONY: all clean