diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-12-15 13:26:28 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-12-15 13:26:28 +0000 |
commit | d80ceb87ecf51a08c0c6fea828847320c0cf16d5 (patch) | |
tree | 20e9e8c8503f5710c4abe49e21b57b9a6d4d1f62 /Build/source/utils/ps2eps/Makefile.am | |
parent | c93a20cf78c84e8ffe47efff548d97ccb662939b (diff) |
ps2eps 1.68
git-svn-id: svn://tug.org/texlive/trunk@20752 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/ps2eps/Makefile.am')
-rw-r--r-- | Build/source/utils/ps2eps/Makefile.am | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/Build/source/utils/ps2eps/Makefile.am b/Build/source/utils/ps2eps/Makefile.am index 3be009166d8..e0c4a4ce3fe 100644 --- a/Build/source/utils/ps2eps/Makefile.am +++ b/Build/source/utils/ps2eps/Makefile.am @@ -1,24 +1,30 @@ ## Makefile.am for the TeX Live subdirectory utils/ps2eps/ ## -## Copyright (C) 2009 Peter Breitenlohner <tex-live@tug.org> +## Copyright (C) 2009, 2010 Peter Breitenlohner <tex-live@tug.org> ## You may freely use, modify and/or distribute this file. ## ACLOCAL_AMFLAGS = -I ../../m4 +## 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 + +# in case of an SVN repository +dist-hook: + rm -rf `find $(distdir) -name .svn` + AM_CFLAGS = $(WARNING_CFLAGS) bin_PROGRAMS = bbox -bbox_SOURCES = bbox.c - -dist_bin_SCRIPTS = ps2eps +bbox_SOURCES = \ + $(PS2EPS_TREE)/src/C/bbox.c -dist_man1_MANS = bbox.1 ps2eps.1 +bin_SCRIPTS = \ + $(PS2EPS_TREE)/bin/ps2eps -EXTRA_DIST = \ - Changes.txt \ - INSTALL.txt \ - LICENSE.txt \ - Latest_is_1.64 \ - README.txt +man1_MANS = \ + $(PS2EPS_TREE)/doc/man/man1/bbox.1 \ + $(PS2EPS_TREE)/doc/man/man1/ps2eps.1 |