diff options
author | Vladimir Volovich <vvv@vsu.ru> | 2008-02-18 00:13:19 +0000 |
---|---|---|
committer | Vladimir Volovich <vvv@vsu.ru> | 2008-02-18 00:13:19 +0000 |
commit | b769336d7ffd1dc4d9b838487a070b86eab16060 (patch) | |
tree | 56e61455b2f6a3b4cc42198384d25d02927525d6 /Build/source/utils/ps2eps/Makefile.in | |
parent | 5d624e53212471f83b51715c482c4032396825ba (diff) |
update to newer version 1.64 from http://www.ipv6.tm.uka.de/~bless/ps2eps
minor changes to Makefile.in (which is our own, not from upstream)
git-svn-id: svn://tug.org/texlive/trunk@6665 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/ps2eps/Makefile.in')
-rw-r--r-- | Build/source/utils/ps2eps/Makefile.in | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Build/source/utils/ps2eps/Makefile.in b/Build/source/utils/ps2eps/Makefile.in index 70c3a258bee..f7dd345b3c6 100644 --- a/Build/source/utils/ps2eps/Makefile.in +++ b/Build/source/utils/ps2eps/Makefile.in @@ -13,6 +13,8 @@ datarootdir = @datarootdir@ exec_prefix = @exec_prefix@ bindir = @bindir@ mandir = @mandir@ +manext = 1 +man1dir = $(mandir)/man$(manext) INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -28,16 +30,17 @@ bbox: bbox.o $(CC) $(CPPFLAGS) $(CFLAGS) -c $< install: bbox - $(INSTALL) -d $(bindir) $(mandir)/man1 + $(INSTALL) -d $(bindir) + $(INSTALL) -d $(man1dir) $(INSTALL_SCRIPT) $(srcdir)/ps2eps $(bindir)/ps2eps $(INSTALL_PROGRAM) bbox $(bindir)/bbox - $(INSTALL_DATA) $(srcdir)/ps2eps.1 $(mandir)/man1/ps2eps.1 - $(INSTALL_DATA) $(srcdir)/bbox.1 $(mandir)/man1/bbox.1 + $(INSTALL_DATA) $(srcdir)/ps2eps.1 $(man1dir)/ps2eps.1 + $(INSTALL_DATA) $(srcdir)/bbox.1 $(man1dir)/bbox.1 check: uninstall: - -rm -f $(bindir)/ps2eps $(bindir)/bbox $(mandir)/man1/ps2eps.1 $(mandir)/man1/bbox.1 + -rm -f $(bindir)/ps2eps $(bindir)/bbox $(man1dir)/ps2eps.1 $(man1dir)/bbox.1 clean: -rm -f bbox bbox.o |