blob: 9655703a9e6784f5ca3cb15d4a1eae494776e4ea (
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 := styles.o
SRCS := $(patsubst %.o,%.cpp,$(OBJS))
include ../global.mk
### The main target:
all: libcss.a
@true
### Implicit rules:
%.o: %.cpp
$(call PRETTY_PRINT,"CC css/" $@)
$(Q)$(CXX) $(CXXFLAGS) $(TNTFLAGS) -c $(DEFINES) $(PLUGINFEATURES) $(INCLUDES) $<
%.cpp: %.css
$(call PRETTY_PRINT,"ECPP css/" $@)
$(Q)$(ECPPC) $(ECPPFLAGS) $(ECPPFLAGS_CSS) -b -m "text/css" $<
### Targets:
libcss.a: $(OBJS)
$(call PRETTY_PRINT,"AR css/" $@)
$(Q)$(AR) r $@ $^ $(AR_NUL)
clean:
$(call PRETTY_PRINT,"CLN css/")
@rm -f *~ *.o core* libcss.a $(SRCS)
dist: clean
@echo "Nothing to do for distribution here ..."
.PRECIOUS: $(SRCS)
|