source: rtems/doc/ada_user/Makefile @ 28807e7

4.104.114.84.95
Last change on this file since 28807e7 was 28807e7, checked in by Joel Sherrill <joel.sherrill@…>, on 07/03/99 at 17:13:27

Removed concept of distribution level.

  • Property mode set to 100644
File size: 1.5 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
10
11include ../Make.config
12
13all: html info ps
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
26dirs:
27        $(make-dirs)
28
29INFOFILES=$(wildcard $(PROJECT) $(PROJECT)-*)
30
31info: dirs ada_user
32        cp $(shell ls -1 $(PROJECT) $(PROJECT)-* 2>/dev/null) $(INFO_INSTALL)
33
34ada_user: $(FILES)
35        $(MAKEINFO) $(PROJECT).texi
36
37dvi: $(PROJECT).dvi
38ps: dirs $(PROJECT).ps
39       
40$(PROJECT).ps: dirs $(PROJECT).dvi
41        dvips -o $(PROJECT).ps $(PROJECT).dvi
42        cp $(PROJECT).ps $(PS_INSTALL)
43
44$(PROJECT).dvi: $(FILES)
45        $(TEXI2DVI) $(PROJECT).texi
46
47html: dirs $(FILES)
48        -mkdir -p $(WWW_INSTALL)/ada_user
49        cp ../user/rtemsarc.gif ../user/rtemspie.gif ../user/states.gif \
50           $(WWW_INSTALL)/ada_user
51        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
52            $(PROJECT).texi
53
54clean:
55        rm -f *.o $(PROG) *.txt core *.html
56        rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
57        rm -f ada_user ada_user-* _*
58
Note: See TracBrowser for help on using the repository browser.