1
0
mirror of https://github.com/rofafor/vdr-plugin-femon.git synced 2023-10-10 11:36:53 +00:00

Fixed AC3-info flickering (Thanks to Pasi Juppo for reporting this one).

Added "Analog" type CA system.
Plugin is now stripped by default.
This commit is contained in:
Rolf Ahrenberg
2005-07-23 04:20:00 +03:00
parent 8e57eec535
commit 7c948cde72
7 changed files with 51 additions and 10 deletions

View File

@@ -16,7 +16,11 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).h | awk '{ pri
### The C++ compiler and options:
CXX ?= g++
CXXFLAGS ?= -g -O2 -Wall -Woverloaded-virtual -fPIC
ifdef FEMON_DEBUG
CXXFLAGS ?= -g -Wall -Woverloaded-virtual -fPIC
else
CXXFLAGS ?= -O2 -Wall -Woverloaded-virtual -fPIC
endif
### The directory environment:
@@ -80,6 +84,9 @@ all: libvdr-$(PLUGIN).so
libvdr-$(PLUGIN).so: $(OBJS)
$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
@cp $@ $(LIBDIR)/$@.$(VDRVERSION)
ifndef FEMON_DEBUG
strip $(LIBDIR)/$@.$(VDRVERSION)
endif
dist: clean
@-rm -rf $(TMPDIR)/$(ARCHIVE)