mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 12:20:07 +00:00
Put Wine version information in all the man pages.
This commit is contained in:
parent
664e4106c6
commit
12a749984c
@ -1,5 +1,5 @@
|
||||
.\" -*- nroff -*-
|
||||
.TH WINE 1 "June 2005" "@PACKAGE_STRING@" "Windows On Unix"
|
||||
.TH WINE 1 "October 2005" "@PACKAGE_STRING@" "Windows On Unix"
|
||||
.SH NAME
|
||||
wine \- run Windows programs on Unix
|
||||
.SH SYNOPSIS
|
||||
|
@ -2,3 +2,4 @@ Makefile
|
||||
dbg.tab.c
|
||||
dbg.tab.h
|
||||
lex.yy.c
|
||||
winedbg.man
|
||||
|
@ -29,8 +29,12 @@ C_SRCS = \
|
||||
EXTRA_SRCS = dbg.y debug.l
|
||||
EXTRA_OBJS = dbg.tab.o @LEX_OUTPUT_ROOT@.o
|
||||
|
||||
MANPAGES = winedbg.man
|
||||
|
||||
@MAKE_PROG_RULES@
|
||||
|
||||
all: $(MANPAGES)
|
||||
|
||||
dbg.tab.c dbg.tab.h: dbg.y
|
||||
$(BISON) -d -t $(SRCDIR)/dbg.y -o dbg.tab.c
|
||||
|
||||
@ -43,9 +47,9 @@ dbg.tab.o: dbg.tab.h
|
||||
|
||||
@LEX_OUTPUT_ROOT@.o: dbg.tab.h
|
||||
|
||||
install::
|
||||
install:: $(MANPAGES)
|
||||
$(MKINSTALLDIRS) $(mandir)/man$(prog_manext)
|
||||
$(INSTALL_DATA) $(SRCDIR)/winedbg.man $(mandir)/man$(prog_manext)/winedbg.$(prog_manext)
|
||||
$(INSTALL_DATA) winedbg.man $(mandir)/man$(prog_manext)/winedbg.$(prog_manext)
|
||||
|
||||
uninstall::
|
||||
$(RM) $(mandir)/man$(prog_manext)/winedbg.$(prog_manext)
|
||||
|
@ -1,4 +1,5 @@
|
||||
.TH WINEDBG 1 "May 2004" "Wine Manpage" "Wine Developers Manual"
|
||||
.\" -*- nroff -*-
|
||||
.TH WINEDBG 1 "October 2005" "@PACKAGE_STRING@" "Wine Developers Manual"
|
||||
.SH NAME
|
||||
winedbg \- Wine's debugger
|
||||
.SH SYNOPSIS
|
@ -1,5 +1,5 @@
|
||||
.\" -*- nroff -*-
|
||||
.TH WINESERVER 1 "September 2005" "@PACKAGE_STRING@" "Wine server"
|
||||
.TH WINESERVER 1 "October 2005" "@PACKAGE_STRING@" "Windows on Unix"
|
||||
.SH NAME
|
||||
wineserver \- the Wine server
|
||||
.SH SYNOPSIS
|
||||
|
@ -5,4 +5,5 @@ fnt2fon
|
||||
make_ctests
|
||||
makedep
|
||||
sfnt2fnt
|
||||
winemaker.man
|
||||
wineprefixcreate
|
||||
|
@ -17,6 +17,9 @@ PROGRAMS = \
|
||||
sfnt2fnt$(EXEEXT) \
|
||||
wineprefixcreate
|
||||
|
||||
MANPAGES = \
|
||||
winemaker.man
|
||||
|
||||
C_SRCS = \
|
||||
bin2res.c \
|
||||
fnt2bdf.c \
|
||||
@ -39,7 +42,7 @@ SUBDIRS = \
|
||||
|
||||
UPDATE_DESKTOP_DATABASE = update-desktop-database
|
||||
|
||||
all: $(PROGRAMS) $(SUBDIRS)
|
||||
all: $(PROGRAMS) $(MANPAGES) $(SUBDIRS)
|
||||
|
||||
@MAKE_RULES@
|
||||
|
||||
@ -72,10 +75,10 @@ install install-lib:: wineprefixcreate
|
||||
$(INSTALL_DATA) $(SRCDIR)/wine.desktop $(datadir)/applications/wine.desktop
|
||||
-$(UPDATE_DESKTOP_DATABASE)
|
||||
|
||||
install install-dev:: $(INSTALLSUBDIRS:%=%/__install__)
|
||||
install install-dev:: $(INSTALLSUBDIRS:%=%/__install__) $(MANPAGES)
|
||||
$(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
|
||||
$(INSTALL_SCRIPT) $(SRCDIR)/winemaker $(bindir)/winemaker
|
||||
$(INSTALL_DATA) $(SRCDIR)/winemaker.man $(mandir)/man$(prog_manext)/winemaker.$(prog_manext)
|
||||
$(INSTALL_DATA) winemaker.man $(mandir)/man$(prog_manext)/winemaker.$(prog_manext)
|
||||
|
||||
uninstall::
|
||||
$(RM) $(bindir)/winemaker $(bindir)/wineprefixcreate $(mandir)/man$(prog_manext)/winemaker.$(prog_manext) \
|
||||
|
@ -3,3 +3,4 @@ lex.yy.c
|
||||
parser.tab.c
|
||||
parser.tab.h
|
||||
widl
|
||||
widl.man
|
||||
|
@ -6,6 +6,7 @@ LEXOPT = -Cf #-w -b
|
||||
EXEEXT = @EXEEXT@
|
||||
|
||||
PROGRAMS = widl$(EXEEXT)
|
||||
MANPAGES = widl.man
|
||||
MODULE = none
|
||||
|
||||
C_SRCS = \
|
||||
@ -22,7 +23,7 @@ C_SRCS = \
|
||||
EXTRA_SRCS = parser.y parser.l
|
||||
EXTRA_OBJS = parser.tab.o @LEX_OUTPUT_ROOT@.o
|
||||
|
||||
all: $(PROGRAMS)
|
||||
all: $(PROGRAMS) $(MANPAGES)
|
||||
|
||||
@MAKE_RULES@
|
||||
|
||||
@ -41,10 +42,10 @@ parser.tab.o: parser.tab.h
|
||||
|
||||
@LEX_OUTPUT_ROOT@.o: parser.tab.h
|
||||
|
||||
install:: $(PROGRAMS)
|
||||
install:: $(PROGRAMS) $(MANPAGES)
|
||||
$(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
|
||||
$(INSTALL_PROGRAM) widl$(EXEEXT) $(bindir)/widl$(EXEEXT)
|
||||
$(INSTALL_DATA) $(SRCDIR)/widl.man $(mandir)/man$(prog_manext)/widl.$(prog_manext)
|
||||
$(INSTALL_DATA) widl.man $(mandir)/man$(prog_manext)/widl.$(prog_manext)
|
||||
|
||||
uninstall::
|
||||
$(RM) $(bindir)/widl$(EXEEXT) $(mandir)/man$(prog_manext)/widl.$(prog_manext)
|
||||
|
@ -1,4 +1,5 @@
|
||||
.TH WIDL 1 "March 2004" "Wine Manpage" "Wine Developers Manual"
|
||||
.\" -*- nroff -*-
|
||||
.TH WIDL 1 "October 2005" "@PACKAGE_STRING@" "Wine Developers Manual"
|
||||
.SH NAME
|
||||
widl \- Wine Interface Definition Language Compiler
|
||||
.SH SYNOPSIS
|
@ -1,5 +1,5 @@
|
||||
.\" -*- nroff -*-
|
||||
.TH WINEBUILD 1 "September 2005" "@PACKAGE_STRING@" "Wine dll builder"
|
||||
.TH WINEBUILD 1 "October 2005" "@PACKAGE_STRING@" "Wine Developers Manual"
|
||||
.SH NAME
|
||||
winebuild \- Wine dll builder
|
||||
.SH SYNOPSIS
|
||||
|
@ -1,2 +1,3 @@
|
||||
Makefile
|
||||
winedump
|
||||
winedump.man
|
||||
|
@ -5,7 +5,7 @@ VPATH = @srcdir@
|
||||
EXEEXT = @EXEEXT@
|
||||
|
||||
PROGRAMS = winedump$(EXEEXT)
|
||||
|
||||
MANPAGES = winedump.man
|
||||
MODULE = none
|
||||
|
||||
C_SRCS = \
|
||||
@ -24,17 +24,17 @@ C_SRCS = \
|
||||
search.c \
|
||||
symbol.c
|
||||
|
||||
all: $(PROGRAMS)
|
||||
all: $(PROGRAMS) $(MANPAGES)
|
||||
|
||||
@MAKE_RULES@
|
||||
|
||||
winedump$(EXEEXT): $(OBJS)
|
||||
$(CC) $(CFLAGS) -o winedump$(EXEEXT) $(OBJS) $(LIBPORT) $(LDFLAGS)
|
||||
|
||||
install:: $(PROGRAMS)
|
||||
install:: $(PROGRAMS) $(MANPAGES)
|
||||
$(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
|
||||
$(INSTALL_PROGRAM) winedump$(EXEEXT) $(bindir)/winedump$(EXEEXT)
|
||||
$(INSTALL_DATA) $(SRCDIR)/winedump.man $(mandir)/man$(prog_manext)/winedump.$(prog_manext)
|
||||
$(INSTALL_DATA) winedump.man $(mandir)/man$(prog_manext)/winedump.$(prog_manext)
|
||||
$(INSTALL_SCRIPT) $(SRCDIR)/function_grep.pl $(bindir)/function_grep.pl
|
||||
|
||||
uninstall::
|
||||
|
@ -1,4 +1,5 @@
|
||||
.TH WINEDUMP 1 "February 2004" "Wine Manpage" "Wine Developers Manual"
|
||||
.\" -*- nroff -*-
|
||||
.TH WINEDUMP 1 "October 2005" "@PACKAGE_STRING@" "Wine Developers Manual"
|
||||
.SH NAME
|
||||
winedump \- A Wine DLL tool
|
||||
.SH SYNOPSIS
|
@ -1,2 +1,3 @@
|
||||
Makefile
|
||||
winegcc
|
||||
winegcc.man
|
||||
|
@ -23,11 +23,13 @@ PROGRAMS = \
|
||||
winegcc$(EXEEXT) \
|
||||
wineg++$(EXEEXT)
|
||||
|
||||
MANPAGES = winegcc.man
|
||||
|
||||
C_SRCS = \
|
||||
utils.c \
|
||||
winegcc.c
|
||||
|
||||
all: $(PROGRAMS)
|
||||
all: $(PROGRAMS) $(MANPAGES)
|
||||
|
||||
@MAKE_RULES@
|
||||
|
||||
@ -37,12 +39,12 @@ winegcc$(EXEEXT): winegcc.o utils.o
|
||||
winecpp$(EXEEXT) wineg++$(EXEEXT): winegcc$(EXEEXT)
|
||||
$(RM) $@ && $(LN_S) winegcc$(EXEEXT) $@
|
||||
|
||||
install:: $(PROGRAMS)
|
||||
install:: $(PROGRAMS) $(MANPAGES)
|
||||
$(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
|
||||
$(INSTALL_PROGRAM) winegcc$(EXEEXT) $(bindir)/winegcc$(EXEEXT)
|
||||
cd $(bindir) && $(RM) wineg++$(EXEEXT) && $(LN_S) winegcc$(EXEEXT) wineg++$(EXEEXT)
|
||||
cd $(bindir) && $(RM) winecpp$(EXEEXT) && $(LN_S) winegcc$(EXEEXT) winecpp$(EXEEXT)
|
||||
$(INSTALL_DATA) $(SRCDIR)/winegcc.man $(mandir)/man$(prog_manext)/winegcc.$(prog_manext)
|
||||
$(INSTALL_DATA) winegcc.man $(mandir)/man$(prog_manext)/winegcc.$(prog_manext)
|
||||
cd $(mandir)/man$(prog_manext) && $(RM) wineg++.$(prog_manext) && $(LN_S) winegcc.$(prog_manext) wineg++.$(prog_manext)
|
||||
|
||||
uninstall::
|
||||
|
@ -1,4 +1,5 @@
|
||||
.TH WINEGCC 1 "January 2005" "Wine Manpage" "Wine Developers Manual"
|
||||
.\" -*- nroff -*-
|
||||
.TH WINEGCC 1 "October 2005" "@PACKAGE_STRING@" "Wine Developers Manual"
|
||||
.SH NAME
|
||||
winegcc \- Wine C and C++ MinGW Compatible Compiler
|
||||
.SH SYNOPSIS
|
@ -1,5 +1,5 @@
|
||||
.\" -*- nroff -*-
|
||||
.TH WINEMAKER 1 "September 27, 2001" "Version 0.5.8" "Windows On Unix"
|
||||
.TH WINEMAKER 1 "October 2005" "@PACKAGE_STRING@" "Wine Developers Manual"
|
||||
.SH NAME
|
||||
winemaker \- generate a build infrastructure for compiling Windows programs on Unix
|
||||
.SH SYNOPSIS
|
@ -2,3 +2,4 @@ Makefile
|
||||
mcy.tab.c
|
||||
mcy.tab.h
|
||||
wmc
|
||||
wmc.man
|
||||
|
@ -5,6 +5,7 @@ VPATH = @srcdir@
|
||||
EXEEXT = @EXEEXT@
|
||||
|
||||
PROGRAMS = wmc$(EXEEXT)
|
||||
MANPAGES = wmc.man
|
||||
MODULE = none
|
||||
|
||||
C_SRCS = \
|
||||
@ -17,7 +18,7 @@ C_SRCS = \
|
||||
EXTRA_SRCS = mcy.y
|
||||
EXTRA_OBJS = mcy.tab.o
|
||||
|
||||
all: $(PROGRAMS)
|
||||
all: $(PROGRAMS) $(MANPAGES)
|
||||
|
||||
mcl.o: mcy.tab.h
|
||||
|
||||
@ -33,9 +34,9 @@ mcy.tab.c mcy.tab.h: mcy.y
|
||||
mcy.tab.h: mcy.tab.c
|
||||
mcy.tab.o: mcy.tab.h
|
||||
|
||||
install:: $(PROGRAMS)
|
||||
install:: $(PROGRAMS) $(MANPAGES)
|
||||
$(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
|
||||
$(INSTALL_DATA) $(SRCDIR)/wmc.man $(mandir)/man$(prog_manext)/wmc.$(prog_manext)
|
||||
$(INSTALL_DATA) wmc.man $(mandir)/man$(prog_manext)/wmc.$(prog_manext)
|
||||
$(INSTALL_PROGRAM) wmc$(EXEEXT) $(bindir)/wmc$(EXEEXT)
|
||||
|
||||
uninstall::
|
||||
|
@ -1,4 +1,5 @@
|
||||
.TH WMC 1 "June 12, 2000" "Version 1.0.0" "Wine Message Compiler"
|
||||
.\" -*- nroff -*-
|
||||
.TH WMC 1 "October 2005" "@PACKAGE_STRING@" "Wine Developers Manual"
|
||||
.SH NAME
|
||||
wrc \- Wine Message Compiler
|
||||
.SH SYNOPSIS
|
@ -3,3 +3,4 @@ lex.yy.c
|
||||
parser.tab.c
|
||||
parser.tab.h
|
||||
wrc
|
||||
wrc.man
|
||||
|
@ -7,6 +7,7 @@ LEXOPT = -Cf #-w -b
|
||||
EXEEXT = @EXEEXT@
|
||||
|
||||
PROGRAMS = wrc$(EXEEXT)
|
||||
MANPAGES = wrc.man
|
||||
MODULE = none
|
||||
|
||||
C_SRCS = \
|
||||
@ -22,7 +23,7 @@ C_SRCS = \
|
||||
EXTRA_SRCS = parser.y parser.l
|
||||
EXTRA_OBJS = parser.tab.o @LEX_OUTPUT_ROOT@.o
|
||||
|
||||
all: $(PROGRAMS)
|
||||
all: $(PROGRAMS) $(MANPAGES)
|
||||
|
||||
@MAKE_RULES@
|
||||
|
||||
@ -41,9 +42,9 @@ parser.tab.o: parser.tab.h
|
||||
|
||||
@LEX_OUTPUT_ROOT@.o: parser.tab.h
|
||||
|
||||
install:: $(PROGRAMS)
|
||||
install:: $(PROGRAMS) $(MANPAGES)
|
||||
$(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
|
||||
$(INSTALL_DATA) $(SRCDIR)/wrc.man $(mandir)/man$(prog_manext)/wrc.$(prog_manext)
|
||||
$(INSTALL_DATA) wrc.man $(mandir)/man$(prog_manext)/wrc.$(prog_manext)
|
||||
$(INSTALL_PROGRAM) wrc$(EXEEXT) $(bindir)/wrc$(EXEEXT)
|
||||
|
||||
uninstall::
|
||||
|
@ -1,4 +1,5 @@
|
||||
.TH WRC 1 "August 24, 2000" "Version 1.1.8" "Wine Resource Compiler"
|
||||
.\" -*- nroff -*-
|
||||
.TH WRC 1 "October 2005" "@PACKAGE_STRING@" "Wine Developers Manual"
|
||||
.SH NAME
|
||||
wrc \- Wine Resource Compiler
|
||||
.SH SYNOPSIS
|
||||
@ -133,9 +134,7 @@ __WRC__ Major version of wrc
|
||||
.br
|
||||
__WRC_MINOR__ Minor version of wrc
|
||||
.br
|
||||
__WRC_MICRO__ Patch level
|
||||
.br
|
||||
__WRC_PATCH__ Same as __WRC_MICRO__
|
||||
__WRC_PATCHLEVEL__ Patch level
|
||||
.PP
|
||||
Win32 compilation mode also sets __WIN32__ to 1 and __FLAT__ to 1.
|
||||
.PP
|
Loading…
Reference in New Issue
Block a user