blob: 8bd0414f9c228ab6e05743e6ec1fdb7c3cbd1834 (
plain)
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
|
# $Id: Makefile.am,v 1.11 2001/06/27 04:36:44 gkunkel $
#
## Process this file with automake to produce Makefile.in
##
# This file is part of the xbase64 libraries
# Copyright (C) 1998 Denis Pershin (dyp@inetlab.com)
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Contact:
#
# Email:
#
# xbase64-dev@techass.com
#
#
SUBDIRS = @XSUBDIRS@
MAINTAINERCLEANFILES = Makefile.in configure aclocal.m4 libtool
# not currently working - left behing in release 2.0 for now
#EXTRA_DIST = makefile.g95
bin_SCRIPTS = xbase64-config
rpm : dist
cp xbase64-@VERSION@.tar.gz /usr/src/redhat/SOURCES
cp xbase64.spec /usr/src/redhat/SPECS
(cd /usr/src/redhat/SPECS ; rpm -ba --clean xbase64.spec)
docs :
(cd docs ; make docs)
.PHONY : docs
|