From 39ec820c931b07bc0cec98add36f106a5965e137 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Sat, 4 Jan 2025 13:48:34 +0100 Subject: BPM detect --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2cebb56..faac1fe 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,8 @@ SRCS= \ debug.cpp \ cpuload.cpp \ log.cpp \ - Click.cpp + Click.cpp \ + BPMDetect.cpp HEADERS=$(SRCS:.cpp=.h) @@ -25,7 +26,7 @@ $(TARGET): $(OBJS) $(CXX) $^ -o $@ $(CXXLIBS) %.o: %.cpp - $(CXX) $(CXXFLAGS) -std=c++20 -O2 -g -Wall -o $@ -c $< + $(CXX) $(CXXFLAGS) -std=c++20 -O2 -g -Wall -Wpedantic -o $@ -c $< clean: rm -f $(TARGET) $(OBJS) -- cgit v1.2.3