source: rtems/doc/user/Makefile @ ae68ff0

4.104.114.84.95
Last change on this file since ae68ff0 was ae68ff0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/27/97 at 12:40:11

Initial revision

  • Property mode set to 100644
File size: 1.3 KB
Line 
1#
2#  COPYRIGHT (c) 1996.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6
7include ../Make.config
8
9PROJECT=c_user
10
11all: 
12
13COMMON_FILES=../common/cpright.texi
14FILES= bsp.texi c_user.texi clock.texi concepts.texi conf.texi \
15dirstat.texi dpmem.texi event.texi example.texi fatal.texi \
16glossary.texi init.texi intr.texi io.texi mp.texi msg.texi overview.texi \
17part.texi preface.texi region.texi rtmon.texi schedule.texi sem.texi \
18signal.texi task.texi timer.texi userext.texi $(COMMON_FILES)
19
20all:
21
22INFOFILES=$(wildcard $(PROJECT) $(PROJECT)-*)
23
24info: c_user
25        cp $(PROJECT) $(PROJECT)-* $(INFO_INSTALL)
26
27c_user: $(FILES)
28        $(MAKEINFO) $(PROJECT).texi
29
30vinfo: info
31        $(INFO) -f $(PROJECT)
32
33dvi: $(PROJECT).dvi
34ps: $(PROJECT).ps
35       
36$(PROJECT).ps: $(PROJECT).dvi
37        dvips -o $(PROJECT).ps $(PROJECT).dvi
38        cp $(PROJECT).ps $(PS_INSTALL)
39
40dv: dvi
41        $(XDVI) $(PROJECT).dvi
42
43view: ps
44        $(GHOSTVIEW) $(PROJECT).ps
45
46$(PROJECT).dvi: $(FILES)
47        $(TEXI2DVI) $(PROJECT).texi
48
49html:
50        -mkdir $(WWW_INSTALL)/c_user
51        cp rtemsarc.gif rtemspie.gif states.gif $(WWW_INSTALL)/c_user
52        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
53            $(PROJECT).texi
54
55clean:
56        rm -f *.o $(PROG) *.txt core *.html
57        rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
58        rm -f c_user c_user-* _*
59
Note: See TracBrowser for help on using the repository browser.