diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2016-07-04 18:15:32 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2016-07-04 18:15:32 +0200 |
commit | fc466638089998071961f152c041c1d9c79cd17d (patch) | |
tree | 04e11f5c87f9331e80f9a3a401dada21dfba0310 | |
parent | a3cfb91fee1d418024156758e33c566f3f21e0c0 (diff) | |
download | mutti-web-fc466638089998071961f152c041c1d9c79cd17d.tar.gz mutti-web-fc466638089998071961f152c041c1d9c79cd17d.tar.bz2 mutti-web-fc466638089998071961f152c041c1d9c79cd17d.zip |
Makefile: Exclude the dot from the suffix variable
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,12 +1,12 @@ -suffix = .xhtml +suffix = xhtml version = $(shell git rev-parse --short HEAD) -xsltproc=xsltproc --stringparam suffix $(suffix) --stringparam stylesheet style.min.css --stringparam version $(version) +xsltproc=xsltproc --stringparam suffix .$(suffix) --stringparam stylesheet style.min.css --stringparam version $(version) svg2png=rsvg-convert -f png pages=$(shell xsltproc xsl/main_filenames.xsl main.xml) -pages_gen=$(pages:%.xml=%$(suffix)) +pages_gen=$(pages:%.xml=%.$(suffix)) common_depend=main.xml $(wildcard xsl/*.xsl) Makefile checkmark.svg |