source: rtems/doc/filesystem/Makefile @ 0486ca5

4.104.114.84.95
Last change on this file since 0486ca5 was 6408000, checked in by Joel Sherrill <joel.sherrill@…>, on 10/07/99 at 22:39:16

Added applayering but did not finish it.

  • Property mode set to 100644
File size: 2.4 KB
Line 
1#
2#  COPYRIGHT (c) 1988-1998.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6#  $Id$
7#
8
9PROJECT=filesystem
10
11include ../Make.config
12
13REPLACE=../tools/word-replace
14
15BMENU+= -c
16
17all: html info ps pdf
18
19dirs:
20        $(make-dirs)
21
22COMMON_FILES=../common/cpright.texi ../common/setup.texi
23
24GENERATED_FILES=basefs.texi applayering.texi
25
26FILES= $(PROJECT).texi \
27  preface.texi $(GENERATED_FILES)
28
29INFOFILES=$(wildcard $(PROJECT) $(PROJECT)-*)
30
31info: dirs networking
32        #cp $(wildcard $(PROJECT) $(PROJECT)-*) $(INFO_INSTALL)
33        cp $(PROJECT) $(INFO_INSTALL)
34
35networking: $(FILES)
36        $(MAKEINFO) $(PROJECT).texi
37
38dvi: dirs $(PROJECT).dvi
39ps: dirs $(PROJECT).ps
40pdf: dirs $(PROJECT).pdf
41       
42$(PROJECT).pdf: $(FILES)
43        $(TEXI2PDF) $(PROJECT).texi
44        cp $(PROJECT).pdf $(WWW_INSTALL)/$(PROJECT)
45       
46$(PROJECT).ps: $(PROJECT).dvi
47        dvips -o $(PROJECT).ps $(PROJECT).dvi
48        cp $(PROJECT).ps $(WWW_INSTALL)/$(PROJECT)
49
50$(PROJECT).dvi: $(FILES)
51        $(TEXI2DVI) $(PROJECT).texi
52        cp $(PROJECT).dvi $(WWW_INSTALL)/$(PROJECT)
53
54basefs.texi: basefs.t Makefile
55        $(BMENU) -p "Preface" \
56           -u "Top" \
57           -n "" ${*}.t
58
59applayering.texi: applayering.t Makefile
60        $(BMENU) -p "" \
61           -u "Top" \
62           -n "" ${*}.t
63
64html: dirs $(FILES)
65        -mkdir -p $(WWW_INSTALL)/$(PROJECT)
66        # rm -f $(WWW_INSTALL)/$(PROJECT)/networkflow.jpg
67        # rm -f $(WWW_INSTALL)/$(PROJECT)/networkflow.png
68        # rm -f $(WWW_INSTALL)/$(PROJECT)/PCIreg.jpg
69        # cp recvbd.jpg $(WWW_INSTALL)/$(PROJECT)/recvbd.jpg
70        # cp networkflow.jpg $(WWW_INSTALL)/$(PROJECT)/networkflow.jpg
71        # cp networkflow.png $(WWW_INSTALL)/$(PROJECT)/networkflow.png
72        # cp PCIreg.jpg $(WWW_INSTALL)/$(PROJECT)/PCIreg.jpg
73        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
74            $(PROJECT).texi
75
76clean:
77        rm -f *.o $(PROG) *.txt core $(PROJECT).pdf
78        rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
79        rm -f $(PROJECT) $(PROJECT)-* $(GENERATED_FILES)
80        rm -f networking networking-*
81        rm -f timedata.texi timetbl.texi intr.texi wksheets.texi
82        rm -f timetbl.t wksheets.t
83        rm -f *.fixed _*
84
85convert:
86#       /usr/bin/gs -dMaxBitmap=300000000 -g5500x7500 -sDEVICE=pdfwrite -q -dNOPAUSE -dSAFER  -sOutputFile=networkflow.pdf -- networkflow.eps -c -quit
87#       /usr/bin/gs -dMaxBitmap=300000000 -g4500x5500 -sDEVICE=pdfwrite -q -dNOPAUSE -dSAFER -sOutputFile=PCIreg.pdf -- PCIreg.eps -c -quit
88#       /usr/bin/gs -dMaxBitmap=300000000 -g4500x5500 -sDEVICE=pdfwrite -q -dNOPAUSE -dSAFER -sOutputFile=recvbd.pdf -- recvbd.eps -c -quit
Note: See TracBrowser for help on using the repository browser.