diff options
author | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-05-10 16:35:24 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-05-10 20:49:09 +0200 |
commit | 460731bcf9cf9ffec50d5761cd63887a72a93b3d (patch) | |
tree | 7010a95d93c6cf502299d9000db34fa80e934546 /schemas/Makefile | |
parent | 2e41eb3c10282d87eab6b3a2f9fa9d16ed3b480a (diff) |
Better colors and presentation.
Diffstat (limited to 'schemas/Makefile')
-rw-r--r-- | schemas/Makefile | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/schemas/Makefile b/schemas/Makefile deleted file mode 100644 index 8e81fda..0000000 --- a/schemas/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -BUILD=ldap network - -RUBBER=rubber --warn boxes --warn refs -PDF=$(patsubst %, %.pdf, $(BUILD)) -SVG=$(patsubst %, %.svg, $(BUILD)) - -.PHONY: all force clean cleanall -# let rubber take care of the pdf dependencies -.PHONY: $(BUILD) all dvi ps pdf force clean wc - -all: pdf - -dvi: pdf -ps: pdf -pdf: $(PDF) -svg: $(SVG) - -%.pdf: %.tex - $(RUBBER) --pdf $< - -%.svg: %.pdf - inkscape $^ --export-plain-svg=$@ - -force: - for I in $(BUILD); do $(RUBBER) --force --pdf "$$I"; done - -clean: - for I in $(BUILD); do $(RUBBER) --clean --ps --pdf "$$I"; done - rm $(SVG) - - -wc: $(PDF) - @for I in $^; do echo -n "$$I: "; ps2ascii "$$I" | wc -w; done |