blob: 5465c3cb51f1b559a6577c99e0efb0125c99b9bc (
plain)
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
|
### The official name of this plugin.
PLUGIN := live
### Additional options to silence TNTNET warnings
TNTFLAGS ?= -Wno-overloaded-virtual -Wno-unused-function
### Includes and Defines (add further entries here):
INCLUDES += -I$(VDRDIR)/include -I..
### The object files (add further files here):
OBJS := treeview.o
SRCS := $(patsubst %.o,%.cpp,$(OBJS))
include ../global.mk
### The main target:
all: libjavascript.a
@true
### Implicit rules:
%.o: %.cpp
$(call PRETTY_PRINT,"CC javascript/" $@)
$(Q)$(CXX) $(CXXFLAGS) $(TNTFLAGS) -c $(DEFINES) $(PLUGINFEATURES) $(INCLUDES) $<
%.cpp: %.js
$(call PRETTY_PRINT,"ECPP javascript/" $@)
$(Q)$(ECPPC) $(ECPPFLAGS) $(ECPPFLAGS_JS) -b -m "text/javascript" $<
### Targets:
libjavascript.a: $(OBJS)
$(call PRETTY_PRINT,"AR javascript/" $@)
$(Q)$(AR) r $@ $^ $(AR_NUL)
clean:
$(call PRETTY_PRINT,"CLN javascript/")
@rm -f *~ *.o core* libjavascript.a $(SRCS)
dist: clean
@echo "Nothing to do for distribution here ..."
.PRECIOUS: $(SRCS)
|