summaryrefslogtreecommitdiff
path: root/support/ctan-o-mat/makefile
blob: 3c88c7fe55dc56df2bef58cc0832411b0ed60610 (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
##-----------------------------------------------------------------------------
## This file is part of ctan-o-mat.
## This program is distributed under BSD-like license. See file LICENSE
##
## (c) 2016-2017 Gerd Neugebauer
##
## Net: gene@gerd-neugebauer.de
##
## This program is free software; you can redistribute it and/or modify it
## under the terms of a 3-clause BSD-like license as stated in the file
## LICENSE contained in this distribution.
##
## You should have received a copy of the LICENSE along with this program; if
## not, see the repository under https://github.com/ge-ne/ctan-o-mat.
##
##-----------------------------------------------------------------------------

FILES = ctan-o-mat	\
	ctan-o-mat.bat	\
	ctan-o-mat.pl	\
	ctan-o-mat.pkg	\
	LICENSE		\
	README.md	\
	makefile	\
	ctan-o-mat.pdf	\
	lib/md2ltx.pl

VERSION = `ctan-o-mat --version`
LATEX   = xelatex

#------------------------------------------------------------------------------

all: validate

clean distclean:
	$(RM) -f *~ *.out *.log *.aux ctan-o-mat.ltx

pdf doc ctan-o-mat.pdf: README.md makefile lib/md2ltx.pl
	@perl lib/md2ltx.pl --version "$(VERSION)" README.md > ctan-o-mat.latex
	@$(LATEX) -interaction=batchmode ctan-o-mat.latex > /dev/null
	@$(LATEX) -interaction=batchmode ctan-o-mat.latex
	@$(RM) ctan-o-mat.out ctan-o-mat.aux ctan-o-mat.log ctan-o-mat.latex

val validate: ctan-o-mat.pdf ctan-o-mat.zip
	@./ctan-o-mat

submit upload: ctan-o-mat.pdf ctan-o-mat.zip
	@./ctan-o-mat -submit

dist ctan-o-mat.zip: $(FILES)
	$(RM) ctan-o-mat.zip
	(cd ..; zip ctan-o-mat/ctan-o-mat.zip $(addprefix ctan-o-mat/,$(FILES)))

#