1# Makefile.am - main makefile for DirMngr
2#     	Copyright (C) 2002 Klar�lvdalens Datakonsult AB
3#
4# This file is part of DirMngr.
5#
6# DirMngr is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10#
11# DirMngr is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
19
20## Process this file with automake to produce Makefile.in
21
22ACLOCAL_AMFLAGS = -I m4
23AUTOMAKE_OPTIONS = dist-bzip2 no-dist-gzip
24
25EXTRA_DIST = config.rpath autogen.sh
26
27if HAVE_W32_SYSTEM
28tests =
29else
30tests = tests
31endif
32
33SUBDIRS = m4 jnlib src po doc $(tests)
34
35dist-hook:
36	echo "$(VERSION)" > $(distdir)/VERSION
37
38stowinstall:
39	$(MAKE) $(AM_MAKEFLAGS) install prefix=/usr/local/stow/dirmngr
40