1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
# The official name of this plugin.
PLUGIN = live
### Additional options to silence TNTNET warnings
TNTFLAGS ?= -Wno-overloaded-virtual -Wno-unused-function
TNTVERSION ?= $(shell tntnet-config --version | sed -e's/\.//g' | sed -e's/pre.*//g' | awk '/^..$$/ { print $$1."000"} /^...$$/ { print $$1."00"} /^....$$/ { print $$1."0" } /^.....$$/ { print $$1 }')
### The C++ compiler and options:
CXX ?= g++
AR ?= ar
ECPPC ?= ecppc
CXXFLAGS ?= -O2 -Woverloaded-virtual -Wall -fPIC
DEFINES ?= -DPLUGIN_NAME_I18N='"$(PLUGIN)"' -DTNTVERSION=$(TNTVERSION)
### The directory environment:
VDRDIR ?= ../../../..
### Make sure that necessary options are included:
-include $(VDRDIR)/Make.global
### Allow user defined options to overwrite defaults:
-include $(VDRDIR)/Make.config
### Includes and Defines (add further entries here):
INCLUDES += -I$(VDRDIR)/include -I..
### The object files (add further files here):
OBJS = treeview.o
### Default rules:
.PHONY: all clean
all: libjavascript.a
### Implicit rules:
%.o: %.cpp
$(CXX) $(CXXFLAGS) $(TNTFLAGS) -c $(DEFINES) $(PLUGINFEATURES) $(INCLUDES) $<
%.cpp: %.js
$(ECPPC) $(ECPPFLAGS) $(ECPPFLAGS_JS) -b -m "text/javascript" $<
### Targets:
libjavascript.a: $(OBJS)
$(AR) r $@ $^
clean:
@rm -f *~ *.o core* libjavascript.a $(OBJS:%.o=%.cpp)
|