summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2025-01-04 17:51:59 +0100
committerRoland Reichwein <mail@reichwein.it>2025-01-04 17:51:59 +0100
commit2e793141e5434043205763c70d3a597cf2d78eeb (patch)
tree8b6a14273fcc98ff7bf118cf63574257a637547f /Makefile
parent624a69994d89c71b1ce59dd3b2117a235400be2f (diff)
Separate clocks
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index faac1fe..93e322a 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@ TARGET=click
default: $(TARGET)
SRCS= \
+ MainLoop.cpp \
main.cpp \
MIDI.cpp \
PCM.cpp \
@@ -12,8 +13,10 @@ SRCS= \
debug.cpp \
cpuload.cpp \
log.cpp \
- Click.cpp \
- BPMDetect.cpp
+ NoteClick.cpp \
+ ClockClick.cpp \
+ InternalClick.cpp \
+ BPMDetect.cpp \
HEADERS=$(SRCS:.cpp=.h)