Added simple dynamic xlat tests
[freeradius.git] / Makefile
1 #
2 # Makefile
3 #
4 #               NOTE: This top-level Makefile must not
5 #               use GNU-make extensions. The lower ones can.
6 #
7 # Version:      $Id$
8 #
9
10 $(if $(wildcard Make.inc),,$(error Missing 'Make.inc' Run './configure [options]' and retry))
11
12 include Make.inc
13
14 MFLAGS += --no-print-directory
15
16 # The version of GNU Make is too old, don't use it (.FEATURES variable was
17 # wad added in 3.81)
18 ifndef .FEATURES
19 $(error The build system requires GNU Make 3.81 or later.)
20 endif
21
22 export DESTDIR := $(R)
23
24 # And over-ride all of the other magic.
25 include scripts/boiler.mk
26
27 #
28 #  To work around OpenSSL issues with travis.
29 #
30 .PHONY:
31 raddb/test.conf:
32         @echo 'security {' >> $@
33         @echo '        allow_vulnerable_openssl = yes' >> $@
34         @echo '}' >> $@
35         @echo '$$INCLUDE radiusd.conf' >> $@
36
37 #
38 #  Run "radiusd -C", looking for errors.
39 #
40 # Only redirect STDOUT, which should contain details of why the test failed.
41 # Don't molest STDERR as this may be used to receive output from a debugger.
42 $(BUILD_DIR)/tests/radiusd-c: raddb/test.conf ${BUILD_DIR}/bin/radiusd | build.raddb
43         @$(MAKE) -C raddb/certs
44         @printf "radiusd -C... "
45         @if ! ./build/make/jlibtool --mode=execute ./build/bin/radiusd -XCMd ./raddb -D ./share -n test > $(BUILD_DIR)/tests/radiusd.config.log; then \
46                 rm -f raddb/test.conf; \
47                 cat $(BUILD_DIR)/tests/radiusd.config.log; \
48                 echo "fail"; \
49                 exit 1; \
50         fi
51         @rm -f raddb/test.conf
52         @echo "ok"
53         @touch $@
54
55 test: ${BUILD_DIR}/bin/radiusd ${BUILD_DIR}/bin/radclient tests.unit tests.xlat tests.keywords tests.auth tests.modules $(BUILD_DIR)/tests/radiusd-c | build.raddb
56         @$(MAKE) -C src/tests tests
57
58 #  Tests specifically for Travis.  We do a LOT more than just
59 #  the above tests
60 ifneq "$(findstring travis,${prefix})" ""
61 travis-test: raddb/test.conf test
62         @./build/make/jlibtool --mode=execute ./build/bin/radiusd -xxxv -n test
63         @rm -f raddb/test.conf
64         @$(MAKE) install
65         @perl -p -i -e 's/allow_vulnerable_openssl = no/allow_vulnerable_openssl = yes/' ${raddbdir}/radiusd.conf
66         @${sbindir}/radiusd -XC
67         @$(MAKE) deb
68 endif
69
70 #
71 # The $(R) is a magic variable not defined anywhere in this source.
72 # It's purpose is to allow an admin to create an installation 'tar'
73 # file *without* actually installing it.  e.g.:
74 #
75 #  $ R=/home/root/tmp make install
76 #  $ cd /home/root/tmp
77 #  $ tar -cf ~/freeradius-package.tar *
78 #
79 # The 'tar' file can then be un-tar'd on any similar machine.  It's a
80 # cheap way of creating packages, without using a package manager.
81 # Many of the platform-specific packaging tools use the $(R) variable
82 # when creating their packages.
83 #
84 # For compatibility with typical GNU packages (e.g. as seen in libltdl),
85 # we make sure DESTDIR is defined.
86 #
87 export DESTDIR := $(R)
88
89 .PHONY: install.bindir
90 install.bindir:
91         @[ -d $(R)$(bindir) ] || $(INSTALL) -d -m 755 $(R)$(bindir)
92
93 .PHONY: install.sbindir
94 install.sbindir:
95         @[ -d $(R)$(sbindir) ] || $(INSTALL) -d -m 755 $(R)$(sbindir)
96
97 .PHONY: install.dirs
98 install.dirs: install.bindir install.sbindir
99         @$(INSTALL) -d -m 755   $(R)$(mandir)
100         @$(INSTALL) -d -m 755   $(R)$(RUNDIR)
101         @$(INSTALL) -d -m 700   $(R)$(logdir)
102         @$(INSTALL) -d -m 700   $(R)$(radacctdir)
103         @$(INSTALL) -d -m 755   $(R)$(datadir)
104         @$(INSTALL) -d -m 755   $(R)$(dictdir)
105
106 DICTIONARIES := $(wildcard share/dictionary*)
107 install.share: $(addprefix $(R)$(dictdir)/,$(notdir $(DICTIONARIES)))
108
109 $(R)$(dictdir)/%: share/%
110         @echo INSTALL $(notdir $<)
111         @$(INSTALL) -m 644 $< $@
112
113 MANFILES := $(wildcard man/man*/*.?)
114 install.man: $(subst man/,$(R)$(mandir)/,$(MANFILES))
115
116 $(R)$(mandir)/%: man/%
117         @echo INSTALL $(notdir $<)
118         @$(INSTALL) -m 644 $< $@
119
120 #
121 #  Don't install rlm_test
122 #
123 ALL_INSTALL := $(patsubst %rlm_test.la,,$(ALL_INSTALL))
124
125 install: install.dirs install.share install.man
126
127 ifneq ($(RADMIN),)
128 ifneq ($(RGROUP),)
129 .PHONY: install-chown
130 install-chown:
131         chown -R $(RADMIN)   $(R)$(raddbdir)
132         chgrp -R $(RGROUP)   $(R)$(raddbdir)
133         chmod u=rwx,g=rx,o=  `find $(R)$(raddbdir) -type d -print`
134         chmod u=rw,g=r,o=    `find $(R)$(raddbdir) -type f -print`
135         chown -R $(RADMIN)   $(R)$(logdir)
136         chgrp -R $(RGROUP)   $(R)$(logdir)
137         find $(R)$(logdir) -type d -exec chmod u=rwx,g=rwx,o= {} \;
138         find $(R)$(logdir) -type d -exec chmod g+s {} \;
139         find $(R)$(logdir) -type f -exec chmod u=rw,g=rw,o= {} \;
140         chown -R $(RADMIN)   $(R)$(RUNDIR)
141         chgrp -R $(RGROUP)   $(R)$(RUNDIR)
142         find $(R)$(RUNDIR) -type d -exec chmod u=rwx,g=rwx,o= {} \;
143         find $(R)$(RUNDIR) -type d -exec chmod g+s {} \;
144         find $(R)$(RUNDIR) -type f -exec chmod u=rw,g=rw,o= {} \;
145 endif
146 endif
147
148 distclean: clean
149         @-find src/modules -regex .\*/config[.][^.]*\$$ -delete
150         @-find src/modules -name autom4te.cache -exec rm -rf '{}' \;
151         @rm -rf config.cache config.log config.status libtool \
152                 src/include/radpaths.h src/include/stamp-h \
153                 libltdl/config.log libltdl/config.status \
154                 libltdl/libtool autom4te.cache build
155         @-find . ! -name configure.ac -name \*.in -print | \
156                 sed 's/\.in$$//' | \
157                 while read file; do rm -f $$file; done
158
159 ######################################################################
160 #
161 #  Automatic remaking rules suggested by info:autoconf#Automatic_Remaking
162 #
163 ######################################################################
164 #
165 #  Do these checks ONLY if we're re-building the "configure"
166 #  scripts, and ONLY the "configure" scripts.  If we leave
167 #  these rules enabled by default, then they're run too often.
168 #
169 ifeq "$(MAKECMDGOALS)" "reconfig"
170
171 CONFIGURE_AC_FILES := $(shell find . -name configure.ac -print)
172 CONFIGURE_FILES    := $(patsubst %.ac,%,$(CONFIGURE_AC_FILES))
173
174 #
175 #  The GNU tools make autoconf=="missing autoconf", which then returns
176 #  0, even when autoconf doesn't exist.  This check is to ensure that
177 #  we run AUTOCONF only when it exists.
178 #
179 AUTOCONF_EXISTS := $(shell autoconf --version 2>/dev/null)
180
181 ifeq "$(AUTOCONF_EXISTS)" ""
182 $(error You need to install autoconf to re-build the "configure" scripts)
183 endif
184
185 # Configure files depend on "in" files, and on the top-level macro files
186 # If there are headers, run auto-header, too.
187 src/%configure: src/%configure.ac acinclude.m4 aclocal.m4 $(wildcard $(dir $@)m4/*m4) | src/freeradius-devel
188         @echo AUTOCONF $(dir $@)
189         cd $(dir $@) && $(AUTOCONF) -I $(top_builddir) -I $(top_builddir)/m4 -I $(top_builddir)/$(dir $@)m4
190         @if grep AC_CONFIG_HEADERS $@ >/dev/null; then\
191                 echo AUTOHEADER $@ \
192                 cd $(dir $@) && $(AUTOHEADER); \
193          fi
194
195 # "%configure" doesn't match "configure"
196 configure: configure.ac $(wildcard ac*.m4) $(wildcard m4/*.m4)
197         @echo AUTOCONF $@
198         @$(AUTOCONF)
199
200 src/include/autoconf.h.in: configure.ac
201         @echo AUTOHEADER $@
202         @$(AUTOHEADER)
203
204 reconfig: $(CONFIGURE_FILES) src/include/autoconf.h.in
205
206 config.status: configure
207         ./config.status --recheck
208
209 # target is "configure"
210 endif
211
212 #  If we've already run configure, then add rules which cause the
213 #  module-specific "all.mk" files to depend on the mk.in files, and on
214 #  the configure script.
215 #
216 ifneq "$(wildcard config.log)" ""
217 CONFIGURE_ARGS     := $(shell head -10 config.log | grep '^  \$$' | sed 's/^....//;s:.*configure ::')
218
219 src/%all.mk: src/%all.mk.in src/%configure
220         @echo CONFIGURE $(dir $@)
221         @rm -f ./config.cache $(dir $<)/config.cache
222         @cd $(dir $<) && ./configure $(CONFIGURE_ARGS)
223 endif
224
225 .PHONY: check-includes
226 check-includes:
227         scripts/min-includes.pl `find . -name "*.c" -print`
228
229 .PHONY: TAGS
230 TAGS:
231         etags `find src -type f -name '*.[ch]' -print` > $@
232
233 #
234 #  Make test certificates.
235 #
236 .PHONY: certs
237 certs:
238         @$(MAKE) -C raddb/certs
239
240 ######################################################################
241 #
242 #  Make a release.
243 #
244 #  Note that "Make.inc" has to be updated with the release number
245 #  BEFORE running this command!
246 #
247 ######################################################################
248 BRANCH = $(shell git rev-parse --abbrev-ref HEAD)
249
250 freeradius-server-$(RADIUSD_VERSION_STRING).tar.gz: .git
251         git archive --format=tar --prefix=freeradius-server-$(RADIUSD_VERSION_STRING)/ $(BRANCH) | gzip > $@
252
253 freeradius-server-$(RADIUSD_VERSION_STRING).tar.gz.sig: freeradius-server-$(RADIUSD_VERSION_STRING).tar.gz
254         gpg --default-key aland@freeradius.org -b $<
255
256 freeradius-server-$(RADIUSD_VERSION_STRING).tar.bz2: .git
257         git archive --format=tar --prefix=freeradius-server-$(RADIUSD_VERSION_STRING)/ $(BRANCH) | bzip2 > $@
258
259 freeradius-server-$(RADIUSD_VERSION_STRING).tar.bz2.sig: freeradius-server-$(RADIUSD_VERSION_STRING).tar.bz2
260         gpg --default-key aland@freeradius.org -b $<
261
262 # high-level targets
263 .PHONY: dist-check
264 dist-check: redhat/freeradius.spec suse/freeradius.spec debian/changelog
265         @if [ `grep ^Version: redhat/freeradius.spec | sed 's/.*://;s/ //'` != "$(RADIUSD_VERSION_STRING)" ]; then \
266                 cat redhat/freeradius.spec | sed 's/^Version: .*/Version: $(RADIUSD_VERSION_STRING)/' > redhat/.foo; \
267                 mv redhat/.foo redhat/freeradius.spec; \
268                 echo redhat/freeradius.spec 'Version' needs to be updated; \
269                 exit 1; \
270         fi
271         @if [ `grep ^Version: suse/freeradius.spec | sed 's/.*://;s/ //'` != "$(RADIUSD_VERSION_STRING)" ]; then \
272                 cat suse/freeradius.spec | sed 's/^Version: .*/Version: $(RADIUSD_VERSION_STRING)/' > suse/.foo; \
273                 mv suse/.foo suse/freeradius.spec; \
274                 echo suse/freeradius.spec 'Version' needs to be updated; \
275                 exit 1; \
276         fi
277         @if [ `head -n 1 debian/changelog | sed 's/.*(//;s/-0).*//;s/-1).*//;s/\+.*//'`  != "$(RADIUSD_VERSION_STRING)" ]; then \
278                 echo debian/changelog needs to be updated; \
279                 exit 1; \
280         fi
281
282 dist: dist-check freeradius-server-$(RADIUSD_VERSION_STRING).tar.gz freeradius-server-$(RADIUSD_VERSION_STRING).tar.bz2
283
284 dist-sign: freeradius-server-$(RADIUSD_VERSION_STRING).tar.gz.sig freeradius-server-$(RADIUSD_VERSION_STRING).tar.bz2.sig
285
286 dist-publish: freeradius-server-$(RADIUSD_VERSION_STRING).tar.gz.sig freeradius-server-$(RADIUSD_VERSION_STRING).tar.gz freeradius-server-$(RADIUSD_VERSION_STRING).tar.gz.sig freeradius-server-$(RADIUSD_VERSION_STRING).tar.bz2 freeradius-server-$(RADIUSD_VERSION_STRING).tar.gz.sig freeradius-server-$(RADIUSD_VERSION_STRING).tar.bz2.sig
287         scp $^ freeradius.org@ftp.freeradius.org:public_ftp
288
289 #
290 #  Note that we do NOT do the tagging here!  We just print out what
291 #  to do!
292 #
293 dist-tag: freeradius-server-$(RADIUSD_VERSION_STRING).tar.gz freeradius-server-$(RADIUSD_VERSION_STRING).tar.bz2
294         @echo "git tag release_`echo $(RADIUSD_VERSION_STRING) | tr .- __`"
295
296 #
297 #       Build a debian package
298 #
299 .PHONY: deb
300 deb:
301         fakeroot dpkg-buildpackage -b -uc
302
303 # Developer checks
304 .PHONY: warnings
305 warnings:
306         @(make clean all 2>&1) | egrep -v '^/|deprecated|^In file included|: In function|   from |^HEADER|^CC|^LINK' > warnings.txt
307         @wc -l warnings.txt
308
309 #
310 #  Ensure we're using tabs in the configuration files,
311 #  and remove trailing whitespace in source files.
312 #
313 .PHONY: whitespace
314 whitespace:
315         @for x in $$(git ls-files raddb/ src/); do unexpand $$x > $$x.bak; cp $$x.bak $$x; rm -f $$x.bak;done
316         @perl -p -i -e 'trim' $$(git ls-files src/)