797ec531aa
* Make the creation of the build dir for the man pages a bit more robust (thanks to suggestions from Ralf W.). * Only distribute the .Xin files, not the .X man pages themselves. * Make the .X files depend on opal_config.h so that if you re-run configure and change opal_config.h (e.g., a new version), the man pages should get rebuilt. * Man pages are now cleaned with "distclean", not "maintainer-clean". * Fix a typo in opal_crs.7in. * Udpate make_dist_tarball to update "date" in the VERSION file. * Make make_dist_tarball a bit friendlier to hg checkouts. This commit was SVN r19219.
31 строка
820 B
Makefile
31 строка
820 B
Makefile
# -*- makefile -*-
|
|
# Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
|
|
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
.1in.1:
|
|
@ echo Creating $@ man page...
|
|
@ sed -e 's/#PACKAGE_NAME#/@PACKAGE_NAME@/g' \
|
|
-e 's/#PACKAGE_VERSION#/@PACKAGE_VERSION@/g' \
|
|
-e 's/#OMPI_DATE#/@OMPI_RELEASE_DATE@/g' \
|
|
> $@ < $<
|
|
|
|
.3in.3:
|
|
@ echo Creating $@ man page...
|
|
@ sed -e 's/#PACKAGE_NAME#/@PACKAGE_NAME@/g' \
|
|
-e 's/#PACKAGE_VERSION#/@PACKAGE_VERSION@/g' \
|
|
-e 's/#OMPI_DATE#/@OMPI_RELEASE_DATE@/g' \
|
|
> $@ < $<
|
|
|
|
.7in.7:
|
|
@ echo Creating $@ man page...
|
|
@ sed -e 's/#PACKAGE_NAME#/@PACKAGE_NAME@/g' \
|
|
-e 's/#PACKAGE_VERSION#/@PACKAGE_VERSION@/g' \
|
|
-e 's/#OMPI_DATE#/@OMPI_RELEASE_DATE@/g' \
|
|
> $@ < $<
|