~ubuntu-branches/ubuntu/hardy/freeradius/hardy-proposed

« back to all changes in this revision

Viewing changes to doc/examples/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2006-12-16 20:45:11 UTC
  • mfrom: (3.1.10 feisty)
  • Revision ID: james.westby@ubuntu.com-20061216204511-3pbbsu4s8jtehsor
Tags: 1.1.3-3
Fix POSIX compliance problem in init script.  Closes: #403384. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Makefile
 
3
#
 
4
# Version:      $Id: Makefile,v 1.1.2.1 2006/07/15 17:16:51 nbk Exp $
 
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