source: rtems/doc/ada_user/Makefile @ 3754660c

4.104.114.84.95
Last change on this file since 3754660c was 3754660c, checked in by Joel Sherrill <joel.sherrill@…>, on 03/30/98 at 14:27:11

Added distribution level to each manual

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