# 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 "" class='form'>
path: root/plugin_button_exec.c (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2008-04-15forgot includemichux1-0/+1
2008-04-15add signal handler, improve error checkmichux1-4/+10
2008-04-14minor updatemichux1-4/+9
2008-04-12Makefiles again, this time libiconv stuff is fixedmichux6-357/+2445
2008-04-12fix error, introduced in r857michux1-1/+1
2008-04-12update Makefilesmichux3-0/+17
2008-04-12clean upmichux1-171/+188
2008-04-10Add the year 2008 to the copyrightmichux1-1/+1
2008-04-10Add basic FIFO pluginmichux4-0/+197
2008-04-04fixed autoconfmichux2-0/+3
2008-04-04update autoconfmichux5-2392/+438
2008-04-04Add asterisk plugin, thanks to mcarey@yostengineering.commichux3-1/+197
2008-04-03fix typo, close #114michux1-1/+1
2008-04-03update charset for Crystalfontz Model 632 and 634michux2-3/+87
2008-03-05improve error messagesmichux1-7/+13
2008-03-03reformat plugin_mpd - use c style commentsmichux1-8/+8
2008-03-03correct code format (indent)michux1-2/+2
2008-03-03correct code format (indent)michux5-184/+185