source: rtems/doc/supplements/i386/Makefile @ 1e524995

4.104.114.84.95
Last change on this file since 1e524995 was 1e524995, checked in by Joel Sherrill <joel.sherrill@…>, on 02/06/98 at 14:14:30

Updated copyrights

  • Property mode set to 100644
File size: 2.1 KB
Line 
1#
2#  COPYRIGHT (c) 1988-1998.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6#  $Id$
7#
8
9include ../Make.config
10
11PROJECT=i386
12REPLACE=../tools/word-replace
13
14all: 
15
16COMMON_FILES=../common/cpright.texi ../common/setup.texi \
17  ../common/timing.texi
18
19FILES= $(PROJECT).texi \
20  bsp.texi callconv.texi cpumodel.texi cputable.texi fatalerr.texi \
21  intr.texi memmodel.texi preface.texi timetbl.texi timedata.texi wksheets.texi
22
23all:
24
25info: c_i386
26        cp c_$(PROJECT) c_$(PROJECT)-* $(INFO_INSTALL)
27
28c_i386: $(FILES)
29        $(MAKEINFO) $(PROJECT).texi
30
31vinfo: info
32        $(INFO) -f c_i386
33
34dvi: $(PROJECT).dvi
35ps: $(PROJECT).ps
36       
37$(PROJECT).ps: $(PROJECT).dvi
38        dvips -o $(PROJECT).ps $(PROJECT).dvi
39        cp $(PROJECT).ps $(PS_INSTALL)
40
41dv: dvi
42        $(XDVI) $(PROJECT).dvi
43
44view: ps
45        $(GHOSTVIEW) $(PROJECT).ps
46
47$(PROJECT).dvi: $(FILES)
48        $(TEXI2DVI) $(PROJECT).texi
49
50replace: timedata.texi
51
52intr.texi: intr.t FORCE386_TIMES
53        ${REPLACE} -p FORCE386_TIMES intr.t
54        mv intr.t.fixed intr.texi
55
56timetbl.t: ../common/timetbl.t
57        sed -e 's/TIMETABLE_NEXT_LINK/Command and Variable Index/' \
58            <../common/timetbl.t >timetbl.t
59
60timetbl.texi: timetbl.t FORCE386_TIMES
61        ${REPLACE} -p FORCE386_TIMES timetbl.t
62        mv timetbl.t.fixed timetbl.texi
63
64timedata.texi: timedata.t FORCE386_TIMES
65        ${REPLACE} -p FORCE386_TIMES timedata.t
66        mv timedata.t.fixed timedata.texi
67
68wksheets.t: ../common/wksheets.t
69        sed -e 's/WORKSHEETS_PREVIOUS_LINK/Processor Dependent Information Table CPU Dependent Information Table/' \
70            -e 's/WORKSHEETS_NEXT_LINK/i386 Timing Data/' \
71            <../common/wksheets.t >wksheets.t
72
73wksheets.texi: wksheets.t FORCE386_TIMES
74        ${REPLACE} -p FORCE386_TIMES wksheets.t
75        mv wksheets.t.fixed wksheets.texi
76
77html: $(FILES)
78        -mkdir $(WWW_INSTALL)/c_i386
79        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/c_$(PROJECT) \
80            $(PROJECT).texi
81
82clean:
83        rm -f *.o $(PROG) *.txt core
84        rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
85        rm -f $(PROJECT) $(PROJECT)-*
86        rm -f c_i386 c_i386-*
87        rm -f timedata.texi timetbl.texi intr.texi wksheets.texi
88        rm -f timetbl.t wksheets.t
89        rm -f *.fixed _*
90
Note: See TracBrowser for help on using the repository browser.