aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2012-09-26 20:08:10 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2012-09-26 20:08:10 +0200
commit7e5561d02f257f5c2ae54f4d55dee1093cf2ad4b (patch)
treea447fe2a109da09d9f06c67a0534873f9ac3a27b /Makefile
parenteac5ac91ba27ae8e6d24625d6fa170425c51d459 (diff)
downloadosc-graphics-7e5561d02f257f5c2ae54f4d55dee1093cf2ad4b.tar.gz
isolated OSC server specific code in OscServer class and allow to register methods in order to localize OSC method handling
i.e. every Layer class is stand-alone now
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bd614d4..8524586 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,8 @@ LDFLAGS := -lm -lsupc++ \
all : osc-graphics
-osc-graphics : main.o layer.o layer_box.o layer_image.o layer_video.o
+osc-graphics : main.o osc_server.o \
+ layer.o layer_box.o layer_image.o layer_video.o
$(CC) $^ $(LDFLAGS) -o $@
install : all