Updating dictionary.erx based on Juniper documentation
[freeradius.git] / doc / examples / Makefile
1 #
2 # Makefile
3 #
4 # Version:      $Id$
5 #
6
7 include ../../Make.inc
8
9 all:
10
11 clean:
12         @rm -f *~
13
14 install:
15         $(INSTALL) -d -m 755 $(R)$(docdir)/examples
16         for file in *[!~]; do \
17                 if [ -f $$file -a $$file != Makefile ]; then \
18                         $(INSTALL) -m 644 $$file $(R)$(docdir)/examples; \
19                 fi; \
20         done
21
22 .PHONY: all clean install