aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 29513ed8e5eae39dfa206ba8f449f59a452a377d (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# This file is part of GNU Radius.
# Copyright (C) 2000-2004, 2007, 2010, 2013 Free Software
# Foundation, Inc.
#
# Written by Sergey Poznyakoff
#
# GNU Radius 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 3 of the License, or
# (at your option) any later version.
#
# GNU Radius 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Radius.  If not, see <http://www.gnu.org/licenses/>.

AUTOMAKE_OPTIONS = gnits 1.8 dist-bzip2
ACLOCAL_AMFLAGS = -I m4 -I am -I gint

if RA_COND_GUILE
  GINT_DIR = gint
  RADSCM_DIR = radscm
endif

SUBDIRS= scripts include lib $(GINT_DIR) gnu sql snmplib $(RADSCM_DIR) \
         radiusd radwho \
         radzap radlast radscripts elisp raddb db client radtest \
         examples tests doc po\
         mibs contrib 

update-dictionary:
	here=`cd $(top_srcdir); pwd`;\
	cd $$here/raddb;\
	$(MAKE) update-dictionary;\
	cd $$here

# We never remove the contents of configuration directory and the
# info directory index
distuninstallcheck_listfiles = \
 find $(prefix) -type f -not -path '$(sysconfdir)/raddb/*'

.PHONY: ChangeLog
ChangeLog: 
	$(AM_V_GEN)if test -d .git; then                                \
	  $(top_srcdir)/build-aux/gitlog-to-changelog --format='%s%n%n%b%n' | \
            sed '/<unknown>$$/d' | fmt -s > ChangeLog;                  \
	  echo "" >> ChangeLog;                                       \
	  echo "Local Variables:" >> ChangeLog;                         \
	  echo "mode: change-log" >> ChangeLog;                         \
	  echo "version-control: never"  >> ChangeLog;                  \
	  echo "buffer-read-only: t" >> ChangeLog;                      \
	  echo "End:" >> ChangeLog;                                     \
        fi

MAINTAINERCLEANFILES=core *~ err out

webdoc:;   $(MAKE) -C doc/texinfo webdoc

alpha: 
	$(MAKE) dist distdir=$(PACKAGE)-$(VERSION)-`date +'%Y%m%d'`

alphacheck: 
	$(MAKE) distcheck distdir=$(PACKAGE)-$(VERSION)-`date +'%Y%m%d'`




Return to:

Send suggestions and report system problems to the System administrator.