1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
# doc/Makefile.in -*- Makefile -*-
# $Id: Makefile.in,v 1.5 1998/09/20 23:49:22 mason Exp $
#@MCOMMON@
srcdir = @srcdir@
VPATH = @srcdir@
basedir = ..
thisdir = doc
first_rule: all
dummy:
#
# Distribution variables
#
DIST_ETC = etc/wterm.termcap etc/wterm.terminfo etc/XTerm.ad
DIST_MENU = menu/menu menu/example.menu menu/wterm.menu menu/terminal.menu\
menu/jedmenu.sl
DIST = Makefile.in README.greek README.menu README.xvt BUGS FAQ TODO\
changes.txt xterm.seq LSM.in wterm.1 wterm.pretbl wtermRef.txt\
wtermRef.html wtermRef-frame.html wtermRef-toc.html wterm.html
#-------------------------------------------------------------------------
all:
SEDREPLACE = -e 's%@WTERM_VERSION@%$(VERSION)%g;'\
-e 's%@WTERM_LSMDATE@%$(LSMDATE)%g;'\
-e 's%@WTERM_DATE@%$(DATE)%g;'\
-e 's%@WTERM_MAINTEMAIL@%$(MAINTEMAIL)%g;'\
-e 's%@WTERM_MAINT@%$(MAINT)%g;'\
-e 's%@WTERM_WEBPAGE@%$(WEBPAGE)%g;'\
-e 's%@WTERM_WEBMAINTEMAIL@%$(WEBMAINTEMAIL)%g;'\
-e 's%@WTERM_WEBMAINT@%$(WEBMAINT)%g;'\
-e 's%@WTERM_FTPSITENAME@%$(FTPSITENAME)%g;'\
-e 's%@WTERM_FTPSITEDIR@%$(FTPSITEDIR)%g;'
tags allbin:
alldoc: $(basedir)/$(VERNAME).lsm wterm.1 wterm.html wtermRef.html wtermRef.txt
$(basedir)/$(VERNAME).lsm: LSM.in ../autoconf/Make.common.in
$(SED) $(SEDREPLACE) < LSM.in > $@
wterm.1: wterm.pretbl
tbl wterm.pretbl > $@
clean:
$(RMF) wterm.man *~
realclean: clean
$(RMF) tags wterm.1 wterm.html wtermRef.html wtermRef.txt
distclean: clean
$(RMF) tags
install: wterm.1
$(INSTALL_DATA) wterm.1 $(DESTDIR)$(mandir)/$(manprefix)wterm.$(manext)
uninstall:
-cd $(mandir); $(RMF) $(manprefix)wterm.$(manext)
distdirs:
mkdir $(basedir)/../$(VERNAME)/$(thisdir)
mkdir $(basedir)/../$(VERNAME)/$(thisdir)/etc
mkdir $(basedir)/../$(VERNAME)/$(thisdir)/menu
distcopy: distdepend
$(CP) -p $(basedir)/$(VERNAME).lsm $(basedir)/../$(VERNAME);
$(CP) -p $(DIST) $(basedir)/../$(VERNAME)/$(thisdir)
$(CP) -p $(DIST_ETC) $(basedir)/../$(VERNAME)/$(thisdir)/etc
$(CP) -p $(DIST_MENU) $(basedir)/../$(VERNAME)/$(thisdir)/menu
distdepend: alldoc
# ------------------------------------------------------------------------
# DO NOT DELETE: ugly dependency list follows
|