blob: 6353b0d31fa618418a40cd1e8228c9621a79feaa (
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
|
## Makefile.am for the TeX Live subdirectory utils/ps2eps/
##
## Copyright (C) 2009-2015 Peter Breitenlohner <tex-live@tug.org>
## You may freely use, modify and/or distribute this file.
##
## We want to re-distribute the whole original ps2eps source tree.
EXTRA_DIST = $(PS2EPS_TREE)
## Patches applied to the original source tree
EXTRA_DIST += $(PS2EPS_TREE)-PATCHES
# Files not to be distributed
include $(srcdir)/../../am/dist_hook.am
NEVER_NAMES += $(NEVER_NAMES_SUB)
AM_CFLAGS = $(WARNING_CFLAGS)
bin_PROGRAMS = bbox
bbox_SOURCES = \
@PS2EPS_TREE@/src/C/bbox.c
man1_MANS = \
$(PS2EPS_TREE)/doc/man/man1/bbox.1 \
$(PS2EPS_TREE)/doc/man/man1/ps2eps.1
perl_scripts = ps2eps
scriptsdir = texmf-dist/scripts/ps2eps
nodist_bin_SCRIPTS =
include $(srcdir)/../../am/script_links.am
texmfdir = $(datarootdir)/$(scriptsdir)
nodist_texmf_SCRIPTS = $(PS2EPS_TREE)/bin/ps2eps.pl
install-data-hook: install-perl-links
uninstall-hook: uninstall-links
CLEANFILES = $(nodist_bin_SCRIPTS)
## Tests
##
TESTS = bbox.test
EXTRA_DIST += $(TESTS)
## bbox.test
EXTRA_DIST += tests/plot.pbm tests/plot.out
DISTCLEANFILES = plot.out
|