source: rtems/doc/ada_user/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: 1.6 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=ada_user
12
13all: 
14
15COMMON_FILES=../common/cpright.texi ../user/bsp.texi ../user/clock.texi \
16  ../user/concepts.texi ../user/conf.texi ../user/dirstat.texi \
17  ../user/dpmem.texi ../user/event.texi \
18  ../user/fatal.texi ../user/glossary.texi ../user/init.texi \
19  ../user/intr.texi ../user/io.texi ../user/mp.texi ../user/msg.texi \
20  ../user/overview.texi ../user/part.texi ../user/preface.texi \
21  ../user/region.texi ../user/rtmon.texi ../user/schedule.texi \
22  ../user/sem.texi ../user/signal.texi ../user/task.texi \
23  ../user/timer.texi ../user/userext.texi
24FILES= ada_user.texi example.texi $(COMMON_FILES)
25
26all:
27
28INFOFILES=$(wildcard $(PROJECT) $(PROJECT)-*)
29
30info: ada_user
31        cp $(PROJECT) $(PROJECT)-* $(INFO_INSTALL)
32
33ada_user: $(FILES)
34        $(MAKEINFO) $(PROJECT).texi
35
36vinfo: info
37        $(INFO) -f $(PROJECT)
38
39dvi: $(PROJECT).dvi
40ps: $(PROJECT).ps
41       
42$(PROJECT).ps: $(PROJECT).dvi
43        dvips -o $(PROJECT).ps $(PROJECT).dvi
44        cp $(PROJECT).ps $(PS_INSTALL)
45
46dv: dvi
47        $(XDVI) $(PROJECT).dvi
48
49view: ps
50        $(GHOSTVIEW) $(PROJECT).ps
51
52$(PROJECT).dvi: $(FILES)
53        $(TEXI2DVI) $(PROJECT).texi
54
55html:
56        -mkdir $(WWW_INSTALL)/ada_user
57        cp ../user/rtemsarc.gif ../user/rtemspie.gif ../user/states.gif \
58           $(WWW_INSTALL)/ada_user
59        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
60            $(PROJECT).texi
61
62clean:
63        rm -f *.o $(PROG) *.txt core *.html
64        rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
65        rm -f ada_user ada_user-* _*
66
Note: See TracBrowser for help on using the repository browser.