2005-10-05 11:37:58 +02:00
|
|
|
bin_PROGRAMS = nix-log2xml
|
2004-03-15 22:51:14 +01:00
|
|
|
|
2005-10-05 11:37:58 +02:00
|
|
|
nix_log2xml_SOURCES = log2xml.cc
|
2004-03-15 22:51:14 +01:00
|
|
|
|
2005-10-05 11:37:58 +02:00
|
|
|
%.xml: %.log nix-log2xml
|
|
|
|
./nix-log2xml < $< > $@
|
2004-03-15 22:51:14 +01:00
|
|
|
|
2005-10-05 11:37:58 +02:00
|
|
|
%.html: %.xml mark-errors.xsl log2html.xsl
|
|
|
|
$(xsltproc) mark-errors.xsl $< | $(xsltproc) log2html.xsl - > $@
|
|
|
|
|
2006-05-12 13:47:45 +02:00
|
|
|
LOG2HTML = $(srcdir)/mark-errors.xsl $(srcdir)/log2html.xsl $(srcdir)/treebits.js
|
2005-10-05 11:37:58 +02:00
|
|
|
|
|
|
|
EXTRA_DIST = $(LOG2HTML)
|
|
|
|
|
|
|
|
install-data-local:
|
|
|
|
$(INSTALL) -d $(DESTDIR)$(datadir)/nix/log2html
|
|
|
|
$(INSTALL_DATA) $(LOG2HTML) $(DESTDIR)$(datadir)/nix/log2html
|