File: Makefile.am

package info (click to toggle)
xzx 2.9.0-1
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 1,644 kB
  • ctags: 2,195
  • sloc: ansic: 25,375; sh: 1,937; yacc: 714; makefile: 197; lex: 107
file content (59 lines) | stat: -rw-r--r-- 2,211 bytes parent folder | download
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
################################################################################
# Copyright (c) Erik Kunze 1995 - 1998
#
# Permission to use, distribute, and sell this software and its documentation
# for any purpose is hereby granted without fee, provided that the above
# copyright notice appear in all copies and that both that copyright notice and
# this permission notice appear in supporting documentation, and that the name
# of the copyright holder not be used in advertising or publicity pertaining to
# distribution of the software without specific, written prior permission.  The
# copyright holder makes no representations about the suitability of this
# software for any purpose.  It is provided "as is" without express or implied
# warranty. THE CODE MAY NOT BE MODIFIED OR REUSED WITHOUT PERMISSION!
#
# THE COPYRIGHT HOLDER DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
# EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, INDIRECT OR
# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
#
# Author: Erik Kunze
#
# $Id: Makefile.am,v 1.4 1998/12/11 20:48:20 erik Rel $
################################################################################

DOC_FILES = COPYRIGHT README FAQ

EXTRA_DIST = COPYRIGHT COPYRIGHT.reg \
             README README.reg \
             INSTALL ChangeLog TODO FAQ \
             Xzx.ad xzx.man xzx.man.reg

man_MANS = xzx.1

xzx.1: xzx.man
	sed -e "s,/usr/local/lib/xzx,$(pkglibdir)," < xzx.man > xzx.1

Xzx: Xzx.ad
	sed -e "s,/usr/local/lib/xzx,$(pkglibdir)," < Xzx.ad > Xzx

install-data-local: Xzx
	$(mkinstalldirs) $(pkglibdir)
	for f in $(DOC_FILES); do \
	  $(INSTALL_DATA) $$f $(pkglibdir); \
	done
	$(INSTALL_DATA) Xzx @XAPPLOADDIR@/Xzx
	rm -f Xzx

uninstall-local:
	for f in $(DOC_FILES); do \
	  rm -f $(pkglibdir)/$$f; \
	done
	rm -f @XAPPLOADDIR@/Xzx

clean:
	rm -f xzx.1 Xzx *~

# EOF ##########################################################################