summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2025-01-03 12:27:14 +0100
committerRoland Reichwein <mail@reichwein.it>2025-01-03 12:27:14 +0100
commit05895c86bddf50aacb3bb5e6a6bcc073965341ef (patch)
treed7627562c8ca35c8689d0a6612a2cdab2cdc4ae4 /Makefile
parent4af400141af0c97c4e4bcd47acf78107a17eafbe (diff)
Add first UI
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 47f9a5f..8ef3555 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,14 @@ TARGET=click
default: $(TARGET)
-SRCS=main.cpp MIDI.cpp PCM.cpp ClickStream.cpp config.cpp
+SRCS= \
+ main.cpp \
+ MIDI.cpp \
+ PCM.cpp \
+ ClickStream.cpp \
+ config.cpp \
+ UI.cpp \
+ Timer.cpp
OBJS=$(SRCS:.cpp=.o)