blob: 7d174c450a0c9b982ea5ebccf8effce335dee93b (
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
|
## Makefile.am for the TeX Live subdirectory texk/psutils/
##
## Copyright (C) 2009-2013 Peter Breitenlohner <tex-live@tug.org>
## You may freely use, modify and/or distribute this file.
##
## We want to re-distribute the whole original psutils source tree.
EXTRA_DIST = $(PSUTILS_TREE)
## Patches applied to the original source tree
EXTRA_DIST += $(PSUTILS_TREE)-PATCHES
# in case of an SVN repository
dist-hook:
rm -rf `find $(distdir) -name .svn -o -name .deps -o -name .dirstamp -o -name '*.$(OBJEXT)'`
AM_CPPFLAGS = $(KPATHSEA_INCLUDES) $(PAPER_INCLUDES) -D_Noreturn= -D_GL_ATTRIBUTE_CONST=
AM_CFLAGS = $(WARNING_CFLAGS)
noinst_LIBRARIES = libpsutils.a
libpsutils_a_SOURCES = \
@PSUTILS_TREE@/psspec.c \
@PSUTILS_TREE@/psspec.h \
@PSUTILS_TREE@/psutil.c \
@PSUTILS_TREE@/psutil.h
$(libpsutils_a_OBJECTS): $(KPATHSEA_DEPEND) $(PAPER_DEPEND)
bin_PROGRAMS = epsffit psbook psnup psresize psselect pstops
epsffit_SOURCES = @PSUTILS_TREE@/epsffit.c
psbook_SOURCES = @PSUTILS_TREE@/psbook.c
psnup_SOURCES = @PSUTILS_TREE@/psnup.c
psresize_SOURCES = @PSUTILS_TREE@/psresize.c
psselect_SOURCES = @PSUTILS_TREE@/psselect.c
pstops_SOURCES = @PSUTILS_TREE@/pstops.c
LDADD = libpsutils.a $(KPATHSEA_LIBS) $(PAPER_LIBS)
perl_scripts = \
extractres \
includeres \
psjoin
scriptsdir = texmf-dist/scripts/psutils
nodist_bin_SCRIPTS =
include $(srcdir)/../../am/script_links.am
texmfdir = $(datarootdir)/$(scriptsdir)
texmf_SCRIPTS = $(perl_scripts:=.pl)
install-data-hook: install-perl-links
uninstall-hook: uninstall-links
man1_MANS = \
@PSUTILS_TREE@/epsffit.1 \
@PSUTILS_TREE@/extractres.1 \
@PSUTILS_TREE@/includeres.1 \
@PSUTILS_TREE@/psbook.1 \
@PSUTILS_TREE@/psjoin.1 \
@PSUTILS_TREE@/psnup.1 \
@PSUTILS_TREE@/psresize.1 \
@PSUTILS_TREE@/psselect.1 \
@PSUTILS_TREE@/pstops.1 \
@PSUTILS_TREE@/psutils.1
## Rebuild libkpathsea
@KPATHSEA_RULE@
## Rebuild libpaper
@PAPER_RULE@
## Tests
##
TESTS = psutils.test
EXTRA_DIST += $(TESTS)
## psutils.test
EXTRA_DIST += tests/play.ps tests/playbook.2 tests/playnup.2 tests/playnup1.2 \
tests/playps.2 tests/playres.ps tests/playsel.2 tests/playsel1.2 \
tests/plot.eps tests/ploth.eps tests/plotm.eps tests/plotv.eps
DISTCLEANFILES = play*.2 play*.ps plot*.eps
|