summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 705cb85..19ba3de 100644
--- a/Makefile
+++ b/Makefile
@@ -28,6 +28,7 @@ PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(s
LIBDIR = $(call PKGCFG,libdir)
LOCDIR = $(call PKGCFG,locdir)
PLGCFG = $(call PKGCFG,plgcfg)
+PLGRESDIR = $(call PKGCFG,resdir)/plugins/skindesigner
#
TMPDIR ?= /tmp
@@ -87,6 +88,12 @@ OBJS = $(PLUGIN).o \
Stream.o \
Media.o \
plexOsd.o \
+ plexSdOsd.o \
+ viewGridNavigator.o \
+ browserGrid.o \
+ viewHeader.o \
+ libskindesigner/skindesignerosdbase.o \
+ libskindesigner/osdelements.o \
SRCS = $(wildcard $(OBJS:.o=.c)) $(PLUGIN).cpp
@@ -144,6 +151,10 @@ $(SOFILE): $(OBJS)
install-lib: $(SOFILE)
install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION)
+install-skins:
+ mkdir -p $(DESTDIR)$(PLGRESDIR)/skins
+ cp -r skins/* $(DESTDIR)$(PLGRESDIR)/skins
+
install: install-lib install-i18n
dist: $(I18Npo) clean