# Path
DIR = $(notdir $(PWD))
OUTPUT = ../HTML
ifeq "$(DIR)" "lcd4linux"
DIR =
endif
ifeq "$(DIR)" ""
XSLTPROC = xsltproc
else
XSLTPROC = xsltproc --stringparam class $(DIR) --stringparam root "../"
endif
XMLVALID = xmllint --noout --valid
NAMES=$(shell find . -name "*.xml" -exec basename {} .xml \;)
html: $(patsubst %.xml,%.html,$(wildcard *.xml))
html-forced: $(patsubst %.xml,%.html-forced,$(wildcard *.xml))
%.html: %.xml %.xml-check output
$(XSLTPROC) $< > $(OUTPUT)/$(DIR)/$@
%.html-forced: %.xml output
$(XSLTPROC) $< > $(OUTPUT)/$(DIR)/$(patsubst %.xml,%.html,$<)
check: $(patsubst %.xml, %.xml-check, $(wildcard *.xml))
%.xml-check: %.xml
@echo "*** Validation of $<"
$(XMLVALID) $<
output:
test -d $(OUTPUT) || `mkdir $(OUTPUT); cp ../data/doc.css $(OUTPUT); cp -R ../data/images $(OUTPUT)`
test -d $(OUTPUT)/$(DIR) || mkdir $(OUTPUT)/$(DIR)
clean:
rm -f $(OUTPUT)/$(DIR)/*.html
clean-bak:
rm -f *~ *.bak
help:
@echo -e ""
@echo -e "Usage :"
@echo -e "-------"
@echo -e "make or make html : builds all possible html pages from xml files"
@echo -e "make %.html : builds the %.html page from %.xml"
@echo -e ""
@echo -e "make html-forced : builds all possible html pages from xml files (no validity check)"
@echo -e "make %.html-forced : builds the %.html page from %.xml (no validity check)"
@echo -e ""
@echo -e "make check : checks the validity of all possible xml files"
@echo -e "make %.xml-check : checks the validity of %.xml"
@echo -e ""
@echo -e "make clean : deletes all generated html pages"
@echo -e "make clean-bak : deletes *~ and *.bak files"
@echo -e ""
b412717bba962083a14ea7056d4c0bdd2b2613&follow=1'>diffstats
|
| Age | Commit message (Collapse) | Author | Files | Lines |
|
This file is an ATSC standard file, and not DVB-T. Replace
the legacy file with the newer one.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
|
|
I posted an email with a patch back on 04/02/2016 17:32 only to find that nothing has been done.
This patch, reproduced below adds 2 new transponders to Astra 28.2E and removes a trailing space. This trailing spaces causes dvbv5-scan to segfault.
Why has this not been actioned and why was my email address banned? Is this a close community that tells people to f-off?
dvb-s/Astra-28.2E | 27 ++++++++++++++++++++++++---
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
|
|
Update dvb-s/Astra-28.2E. 2 new transponders, corrected duplicate of
tp 92 in tp 93 and removed trailing space causing user tools segfault.
Signed-off-by: Bob Goddard <linuxtv@1.linuxtv.bgcomp.co.uk>
|
|
Channels imported from portalbsd.com.br.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
|
|
Syncrhonize with the latest tables at portalbsd.com.br.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
|