~ubuntu-branches/ubuntu/dapper/fpc/dapper

« back to all changes in this revision

Viewing changes to doc/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Carlos Laviola
  • Date: 2001-08-29 23:15:17 UTC
  • Revision ID: james.westby@ubuntu.com-20010829231517-thxsp7ctuab584ia
Tags: upstream-1.0.4
ImportĀ upstreamĀ versionĀ 1.0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##################################
 
2
# Man page installation for linux
 
3
#
 
4
 
 
5
ifndef PREFIXINSTALLDIR
 
6
PREFIXINSTALLDIR=/usr
 
7
endif
 
8
 
 
9
ifndef DOCINSTALLDIR
 
10
DOCINSTALLDIR:=$(PREFIXINSTALLDIR)/doc/fpc-$(shell ppc386 -iV)
 
11
endif 
 
12
 
 
13
installdoc:
 
14
        install -d -m 755 $(DOCINSTALLDIR)
 
15
        cp readme.txt $(DOCINSTALLDIR)/README
 
16
        cp whatsnew.txt $(DOCINSTALLDIR)/NEWS
 
17
        cp faq.htm $(DOCINSTALLDIR)/faq.html
 
18
        cp faq.txt $(DOCINSTALLDIR)
 
19
 
 
20
faq.txt: faq.html
 
21
        lynx -dump faq.html > faq.txt
 
22