source: rtems/doc/posix_users/Makefile @ 8f9efcb9

4.104.114.84.95
Last change on this file since 8f9efcb9 was 8f9efcb9, checked in by Joel Sherrill <joel.sherrill@…>, on 11/16/99 at 19:41:31

Added status chapter.

  • Property mode set to 100644
File size: 3.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
9PROJECT=posix_users
10
11include ../Make.config
12
13all: html info ps pdf
14
15dirs:
16        $(make-dirs)
17
18COMMON_FILES=../common/cpright.texi
19
20GENERATED_FILES= \
21   cancel.texi clock.texi cond.texi \
22   cspecific.texi device.texi files.texi \
23   io.texi key.texi memorymgmt.texi message.texi mutex.texi procenv.texi \
24   process.texi sched.texi semaphores.texi signal.texi status.texi \
25   systemdb.texi thread.texi
26
27FILES= posix_users.texi preface.texi \
28  $(COMMON_FILES) $(GENERATED_FILES)
29
30INFOFILES=$(wildcard $(PROJECT) $(PROJECT)-*)
31
32info: dirs $(FILES) $(PROJECT)
33#       cp $(PROJECT) $(PROJECT)-* $(INFO_INSTALL)
34        cp $(PROJECT) $(INFO_INSTALL)
35
36$(PROJECT): $(FILES)
37        $(MAKEINFO) posix_users.texi
38
39dvi: dirs $(PROJECT).dvi
40ps: dirs $(PROJECT).ps
41pdf: dirs $(PROJECT).pdf
42       
43$(PROJECT).pdf: $(FILES)
44        $(TEXI2PDF) $(PROJECT).texi
45        cp $(PROJECT).pdf $(WWW_INSTALL)/$(PROJECT)
46       
47$(PROJECT).ps: $(PROJECT).dvi
48        dvips -o $(PROJECT).ps $(PROJECT).dvi
49        cp $(PROJECT).ps $(WWW_INSTALL)/$(PROJECT)
50
51$(PROJECT).dvi: $(FILES)
52        $(TEXI2DVI) posix_users.texi
53        cp $(PROJECT).dvi $(WWW_INSTALL)/$(PROJECT)
54
55html: dirs $(FILES)
56        -mkdir -p $(WWW_INSTALL)/$(PROJECT)
57        -cd .. ; gmake headers
58        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
59            posix_users.texi
60
61clean:
62        rm -f *.o $(PROG) *.txt core *.html $(PROJECT).pdf
63        rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
64        rm -f $(PROJECT) $(PROJECT)-* _* $(GENERATED_FILES)
65        rm -f *.cps *.cpss *.fns *.jkys *.pgs *.tps *.vrs
66
67process.texi: process.t Makefile
68         $(BMENU) -p "" \
69            -u "Top" \
70            -n "" ${*}.t
71
72procenv.texi: procenv.t Makefile
73         $(BMENU) -p "" \
74            -u "Top" \
75            -n "" ${*}.t
76
77files.texi: files.t Makefile
78         $(BMENU) -p "" \
79            -u "Top" \
80            -n "" ${*}.t
81
82thread.texi: thread.t Makefile
83         $(BMENU) -p "" \
84            -u "Top" \
85            -n "" ${*}.t
86
87signal.texi: signal.t Makefile
88         $(BMENU) -p "" \
89            -u "Top" \
90            -n "" ${*}.t
91
92mutex.texi: mutex.t Makefile
93         $(BMENU) -p "" \
94            -u "Top" \
95            -n "" ${*}.t
96
97cond.texi: cond.t Makefile
98         $(BMENU) -p "" \
99            -u "Top" \
100            -n "" ${*}.t
101
102key.texi: key.t Makefile
103         $(BMENU) -p "" \
104            -u "Top" \
105            -n "" ${*}.t
106
107clock.texi: clock.t Makefile
108         $(BMENU) -p "" \
109            -u "Top" \
110            -n "" ${*}.t
111
112sched.texi: sched.t Makefile
113         $(BMENU) -p "" \
114            -u "Top" \
115            -n "" ${*}.t
116
117io.texi: io.t Makefile
118         $(BMENU) -p "" \
119            -u "Top" \
120            -n "" ${*}.t
121
122device.texi: device.t Makefile
123         $(BMENU) -p "" \
124            -u "Top" \
125            -n "" ${*}.t
126
127cspecific.texi: cspecific.t Makefile
128         $(BMENU) -p "" \
129            -u "Top" \
130            -n "" ${*}.t
131
132semaphores.texi: semaphores.t Makefile
133         $(BMENU) -p "" \
134            -u "Top" \
135            -n "" ${*}.t
136
137memorymgmt.texi: memorymgmt.t Makefile
138         $(BMENU) -p "" \
139            -u "Top" \
140            -n "" ${*}.t
141
142message.texi: message.t Makefile
143         $(BMENU) -p "" \
144            -u "Top" \
145            -n "" ${*}.t
146
147cancel.texi: cancel.t Makefile
148         $(BMENU) -p "" \
149            -u "Top" \
150            -n "" ${*}.t
151
152systemdb.texi: systemdb.t Makefile
153         $(BMENU) -p "" \
154            -u "Top" \
155            -n "" ${*}.t
156
157status.texi: status.t Makefile
158         $(BMENU) -p "" \
159            -u "Top" \
160            -n "" ${*}.t
161
Note: See TracBrowser for help on using the repository browser.