~ubuntu-branches/ubuntu/jaunty/freeradius/jaunty-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
#	Scripts to format dictionary files.
#
#	$Id$
#
.PHONY: format

#
#  This should only be run by hand, and then sanity checked by hand!
#
format: dictionary*
	@for x in dictionary* ; do \
		cat $$x | ./format.pl > tmp; \
		mv tmp $$x; \
	done