mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
47 lines
1.4 KiB
Diff
47 lines
1.4 KiB
Diff
diff --git a/Makefile b/Makefile
|
|
index dc959f1..5cb2315 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -15,22 +15,15 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri
|
|
|
|
### The directory environment:
|
|
|
|
-# Use package data if installed...otherwise assume we're under the VDR source directory:
|
|
-PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc))
|
|
-LIBDIR = $(call PKGCFG,libdir)
|
|
-LOCDIR = $(call PKGCFG,locdir)
|
|
-PLGCFG = $(call PKGCFG,plgcfg)
|
|
-#
|
|
TMPDIR ?= /tmp
|
|
|
|
### The compiler options:
|
|
|
|
-export CFLAGS = $(call PKGCFG,cflags)
|
|
-export CXXFLAGS = $(call PKGCFG,cxxflags)
|
|
+include $(VDRDIR)/Make.global
|
|
|
|
### The version number of VDR's plugin API:
|
|
|
|
-APIVERSION = $(call PKGCFG,apiversion)
|
|
+APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h)
|
|
|
|
### Allow user defined options to overwrite defaults:
|
|
|
|
@@ -47,7 +40,7 @@ SOFILE = libvdr-$(PLUGIN).so
|
|
|
|
### Includes and Defines (add further entries here):
|
|
|
|
-INCLUDES +=
|
|
+INCLUDES += -I$(VDRDIR)/include
|
|
|
|
DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
|
|
|
|
@@ -103,6 +96,7 @@ install-i18n: $(I18Nmsgs)
|
|
|
|
$(SOFILE): $(OBJS)
|
|
$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) -o $@
|
|
+ @cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
|
|
|
|
install-lib: $(SOFILE)
|
|
install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION)
|