diff options
author | Roland Reichwein <mail@reichwein.it> | 2025-01-04 17:51:59 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2025-01-04 17:51:59 +0100 |
commit | 2e793141e5434043205763c70d3a597cf2d78eeb (patch) | |
tree | 8b6a14273fcc98ff7bf118cf63574257a637547f /Makefile | |
parent | 624a69994d89c71b1ce59dd3b2117a235400be2f (diff) |
Separate clocks
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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) |