summaryrefslogtreecommitdiff
path: root/macros/generic/schemata/Makefile
blob: c72cdb6cbd17d2b5a2869fa4c89b0d7bce3142cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#Copyright (C) 2020 by Charles P. Schaum <charles[dot]schaum@comcast.net>
#-------------------------------------------------------
#
#This file may be distributed and/or modified under the
#conditions of the LaTeX Project Public License, either version 1.3
#of this license or (at your option) any later version.
#The latest version of this license is in:
#
#   http://www.latex-project.org/lppl.txt
#
#and version 1.3 or later is part of all distributions of LaTeX 
#version 2005/12/01 or later.
#
# Name of package
NAME  = schemata
# LaTeX engine to use for package; below is the default.
# One can choose from latex, pdflatex, xelatex, lualatex, dvilualatex.
ENGINE ?= pdflatex
# Engine to use for test; below is the default.
TESTENGINE ?= pdftex
# Shell to use; default is bash
SHELL = bash
# Value of current working directory
PWD   = $(shell pwd)
# Package version info
VERS  = $(shell ltxfileinfo -v $(NAME).dtx|sed -e 's/^v//')
# Local, system-wide tex tree
LOCAL = $(shell kpsewhich --var-value TEXMFLOCAL)
# Tex tree in user's home directory
UTREE = $(shell kpsewhich --var-value TEXMFHOME)
#
# Default make target is release and its dependencies
release:    $(NAME).pdf
#
# The testing target also compiles the examples file.
testing:    $(NAME).pdf schematest.pdf

#
# This is the recipe for schematest.pdf. It will work also for dvi output.
schematest.pdf    : schematest.tex
	$(TESTENGINE) --interaction=nonstopmode schematest > /dev/null
	if [ -f schematest.dvi ]; then dvipdf schematest; fi
	if [ -f schematest.out.ps ]; then rm schematest.out.ps; fi

#
# This is the recipe for the package docs. It will work also for dvi output.
$(NAME).pdf : $(NAME).dtx
	$(ENGINE) -shell-escape -recorder -interaction=batchmode $(NAME).dtx >/dev/null
	$(ENGINE) --recorder --interaction=nonstopmode $(NAME).dtx > /dev/null
	if [ -f $(NAME).glo ]; then makeindex -q -s gglo.ist -o $(NAME).gls $(NAME).glo; fi
	if [ -f $(NAME).idx ]; then makeindex -q -s gind.ist -o $(NAME).ind $(NAME).idx; fi
	$(ENGINE) --recorder --interaction=nonstopmode $(NAME).dtx > /dev/null
	$(ENGINE) --recorder --interaction=nonstopmode $(NAME).dtx > /dev/null
	if [ -f $(NAME).dvi ]; then dvipdf $(NAME); fi
#
# Using this recipe deletes the auxiliary and log files
clean:
	rm -f $(NAME).{aux,fls,glo,gls,hd,idx,ilg,ind,ins,log,out,toc}
	rm -f schematest.{aux,fls,glo,gls,hd,idx,ilg,ind,ins,log,out,toc}
#
# Using this recipe cleans also all generated files
distclean: clean
	rm -f $(NAME).{dvi,pdf,sty,synctex.gz,"synctex(busy)"} README.md
	rm -f schematest.{dvi,pdf,synctex.gz,"synctex(busy)",tex}
#
# Using this recipe deletes files for testong
testclean:
	rm -f schematest.{aux,fls,glo,gls,hd,idx,ilg,ind,ins,log,out,toc}
	rm -f schematest.{dvi,pdf,synctex.gz,"synctex(busy)"}
#
# This recipe installs the package release into the user's tree
inst: release
	mkdir -p $(UTREE)/{tex,source,doc}/generic/$(NAME)
	cp $(NAME).dtx $(UTREE)/source/generic/$(NAME)
	cp $(NAME).png $(UTREE)/source/generic/$(NAME)
	cp Makefile $(UTREE)/source/generic/$(NAME)
	cp $(NAME).sty $(UTREE)/tex/generic/$(NAME)
	cp $(NAME).pdf $(UTREE)/doc/generic/$(NAME)
	cp schematest.tex $(UTREE)/doc/generic/$(NAME)
	cp README.md $(UTREE)/doc/generic/$(NAME)
#
# This recipe installs the package release into the system tree
install: release
	sudo mkdir -p $(LOCAL)/{tex,source,doc}/generic/$(NAME)
	sudo cp $(NAME).dtx $(LOCAL)/source/generic/$(NAME)
	sudo cp $(NAME).png $(LOCAL)/source/generic/$(NAME)
	sudo cp Makefile $(LOCAL)/source/generic/$(NAME)
	sudo cp $(NAME).sty $(LOCAL)/tex/generic/$(NAME)
	sudo cp $(NAME).pdf $(LOCAL)/doc/generic/$(NAME)
	sudo cp schematest.tex $(LOCAL)/doc/generic/$(NAME)
	sudo cp README.md $(LOCAL)/doc/generic/$(NAME)
#
# This recipe creates a zip file for upload to CTAN
zip: release
	ln -sf . $(NAME)
	zip -Drq $(PWD)/$(NAME)-$(VERS).zip \
$(NAME)/{README.md,schematest.tex,Makefile,$(NAME).{pdf,dtx,png}}
	rm $(NAME)