mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m.internship-documentation.git
synced 2025-05-15 04:19:13 +02:00
Add Split Channel setup figures
This commit is contained in:
parent
4aeea93bcc
commit
a9ad1b1c77
7 changed files with 829 additions and 23 deletions
23
figures/grand/setup/Makefile
Normal file
23
figures/grand/setup/Makefile
Normal file
|
@ -0,0 +1,23 @@
|
|||
# vim:ft=make
|
||||
.PHONY: all clean
|
||||
|
||||
SRCDIR = $(shell pwd)/src
|
||||
OUTPUTDIR = $(shell pwd)
|
||||
|
||||
VPATH = $(SRCDIR)
|
||||
|
||||
SOURCES := $(patsubst ,$(SRCDIR),$(wildcard $(SRCDIR)/*.svg))
|
||||
OBJECTS := $(patsubst %.svg,%.pdf,$(SOURCES))
|
||||
|
||||
### Targets
|
||||
all: $(OBJECTS)
|
||||
|
||||
%.pdf: %.svg
|
||||
inkscape --export-area-drawing --export-pdf="${@F}" "$^"
|
||||
|
||||
%.pdf_tex: %.svg
|
||||
inkscape --export-area-drawing --export-latex --export-pdf="${@F}" "$^"
|
||||
|
||||
clean:
|
||||
@rm -vf *.pdf *.pdf_tex
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue