Add the vvp man page.

This commit is contained in:
steve
2001-07-21 04:34:25 +00:00
parent a2f07011c1
commit bf67f386de
3 changed files with 58 additions and 3 deletions
+8 -3
View File
@@ -16,7 +16,7 @@
# 59 Temple Place - Suite 330
# Boston, MA 02111-1307, USA
#
#ident "$Id: Makefile.in,v 1.24 2001/06/21 22:54:12 steve Exp $"
#ident "$Id: Makefile.in,v 1.25 2001/07/21 04:34:25 steve Exp $"
#
#
SHELL = /bin/sh
@@ -29,6 +29,7 @@ VPATH = $(srcdir)
bindir = @bindir@
libdir = @libdir@
mandir = @mandir@
includedir = @includedir@
CC = @CC@
@@ -97,16 +98,20 @@ Makefile: Makefile.in config.status
./config.status
install: all installdirs $(bindir)/vvp
install: all installdirs $(bindir)/vvp $(mandir)/man1/vvp.1
$(bindir)/vvp: ./vvp
$(INSTALL_PROGRAM) ./vvp $(bindir)/vvp
$(mandir)/man1/vvp.1: $(srcdir)/vvp.man
$(INSTALL_DATA) $(srcdir)/vvp.man $(mandir)/man1/vvp.1
installdirs: $(srcdir)/mkinstalldirs
$(srcdir)/mkinstalldirs $(bindir)
$(srcdir)/mkinstalldirs $(bindir) $(mandir)/man1
uninstall:
rm -f $(bindir)/vvp
rm -f $(mandir)/man1/vvp.1
-include $(patsubst %.o, dep/%.d, $O)