summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
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)