1#
2# Makefile for Etc subdirectory
3#
4# Copyright (c) 1995-1997 Richard Coleman
5# All rights reserved.
6#
7# Permission is hereby granted, without written agreement and without
8# license or royalty fees, to use, copy, modify, and distribute this
9# software and to distribute modified versions of this software for any
10# purpose, provided that the above copyright notice and the following
11# two paragraphs appear in all copies of this software.
12#
13# In no event shall Richard Coleman or the Zsh Development Group be liable
14# to any party for direct, indirect, special, incidental, or consequential
15# damages arising out of the use of this software and its documentation,
16# even if Richard Coleman and the Zsh Development Group have been advised of
17# the possibility of such damage.
18#
19# Richard Coleman and the Zsh Development Group specifically disclaim any
20# warranties, including, but not limited to, the implied warranties of
21# merchantability and fitness for a particular purpose.  The software
22# provided hereunder is on an "as is" basis, and Richard Coleman and the
23# Zsh Development Group have no obligation to provide maintenance,
24# support, updates, enhancements, or modifications.
25#
26
27subdir = Etc
28dir_top = ..
29SUBDIRS =
30
31@VERSION_MK@
32
33# source/build directories
34VPATH           = @srcdir@
35sdir            = @srcdir@
36sdir_top        = @top_srcdir@
37INSTALL         = @INSTALL@
38
39@DEFS_MK@
40
41# ========== DEPENDENCIES FOR BUILDING ==========
42
43all: FAQ
44
45FAQ: FAQ.yo
46	cd $(sdir) && $(YODL2TXT) FAQ.yo && mv -f FAQ.txt FAQ
47
48FAQ.html: FAQ.yo
49	$(YODL2HTML) $(sdir)/FAQ.yo
50
51# ========== DEPENDENCIES FOR CLEANUP ==========
52
53@CLEAN_MK@
54
55mostlyclean-here:
56	rm -f FAQ.html
57
58distclean-here:
59	rm -f Makefile
60
61realclean-here:
62	rm -f FAQ
63
64# ========== DEPENDENCIES FOR MAINTENANCE ==========
65
66@CONFIG_MK@
67