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

« back to all changes in this revision

Viewing changes to doc/rfc/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
 
include ../../Make.inc
2
 
 
3
 
RFC     = rfc2548.txt rfc2865.txt rfc2866.txt rfc2867.txt rfc2868.txt \
4
 
          rfc2869.txt rfc3162.txt 
5
 
 
6
 
all:
7
 
 
8
 
html: refs
9
 
        ./rewrite.pl $(RFC)
10
 
        @touch .rewrite
11
 
 
12
 
refs: $(RFC)
13
 
        ./genref.pl $(RFC) > refs
14
 
 
15
 
clean:
16
 
        rm -f refs rfc*.html *~ .rewrite index.html
17
 
 
18
 
install:
19
 
        $(INSTALL) -d -m 755    $(R)$(datadir)/doc/freeradius-$(RADIUSD_VERSION)/rfc
20
 
        for i in `ls -1 *.txt *.html`; do \
21
 
                $(INSTALL) -m 644 $$i $(R)$(datadir)/doc/freeradius-$(RADIUSD_VERSION)/rfc; \
22
 
        done