* Implement a different way to delete a password from the cache.
[alpine.git] / doc / tech-notes / Makefile
blobea7d19efaed879819ab09ef90ca3872dd2fd31af
1 # $Id: Makefile,v 1.6 1998/05/11 18:33:22 skramer Exp $
3 # T H E P I N E M A I L S Y S T E M
5 # Laurence Lundblade and Mike Seibel
6 # Networks and Distributed Computing
7 # Computing and Communications
8 # University of Washington
9 # Administration Building, AG-44
10 # Seattle, Washington, 98195, USA
11 # Internet: lgl@CAC.Washington.EDU
12 # mikes@CAC.Washington.EDU
14 # Please address all bugs and comments to "pine-bugs@cac.washington.edu"
17 # Pine and Pico are registered trademarks of the University of Washington.
18 # No commercial use of these trademarks may be made without prior written
19 # permission of the University of Washington.
21 # Pine, Pico, and Pilot software and its included text are Copyright
22 # 1989-1996 by the University of Washington.
24 # The full text of our legal notices is contained in the file called
25 # CPYRIGHT, included with this distribution.
28 # Pine is in part based on The Elm Mail System:
29 # ***********************************************************************
30 # * The Elm Mail System - Revision: 2.13 *
31 # * *
32 # * Copyright (c) 1986, 1987 Dave Taylor *
33 # * Copyright (c) 1988, 1989 USENET Community Trust *
34 # ***********************************************************************
37 # These variables are specific to the University of Washington's
38 # WWW server environment -- modify as needed for your own:
39 # WWWDIR: location for HTML files on WWW server
40 # PNUTS: script to run pnuts navigation bar generator; for details on PNUTS,
41 # see: http://hopf.math.nwu.edu/docs/utility.html
42 # If you do not have the PNUTS program, set variable to /bin/true
44 SOURCES= index.html introduction.html background.html installation.html \
45 cmd-line.html config.html config-notes.html low-level.html
47 ALLSRC= $(SOURCES) for.pnuts
49 TXTS= index.txt introduction.txt background.txt installation.txt \
50 cmd-line.txt config.txt config-notes.txt low-level.txt
52 HTML2TXT= lynx -underscore -nolist -dump
54 WWWDIR= /usr/local/wwwdev/world/pine/tech-notes
56 PNUTS= $(WWWDIR)/pn4tn
58 .SUFFIXES: .html .txt
60 tech-notes.txt: $(TXTS)
61 cat $(TXTS) > tech-notes.txt
62 rm $(TXTS)
64 www: $(ALLSRC)
65 cp $(ALLSRC) $(WWWDIR)
66 ( cd $(WWWDIR) ; $(PNUTS) )
68 .html.txt:
69 $(HTML2TXT) $< > $@