From 522043bf78571cf0aec786abe63b1db9a6e185d8 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sun, 02 Dec 2012 17:40:04 -0500 Subject: Initial commit. --- (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4ed0d95 --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +# NB: This currently does nothing, as all assets are manually rasterized. +RESOLUTION = 300 + +SRCS = brochure-outside.svg brochure-inside.svg +OBJS = $(SRCS:.svg=.pdf) +OUT = brochure.pdf + +.SUFFIXES: +.SUFFIXES: .svg .pdf + +default: $(OUT) + +.svg.pdf: + inkscape --export-dpi=$(RESOLUTION) --export-pdf=$@ $< + +$(OUT): $(OBJS) + gs -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=$@ $(OBJS) + +clean: + rm -f $(OBJS) $(OUT) -- cgit v0.9.1