source: rtems/doc/posix_users/Makefile @ ca0b18a1

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

Corrected distribution levels for html

  • Property mode set to 100644
File size: 1.2 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
10DISTRIBUTION_LEVEL=public
11
12include ../Make.config
13
14all: 
15
16COMMON_FILES=../common/cpright.texi
17FILES= clock.texi cond.texi key.texi mutex.texi $(PROJECT).texi preface.texi \
18  sched.texi signal.texi thread.texi $(COMMON_FILES)
19
20all:
21
22INFOFILES=$(wildcard $(PROJECT) $(PROJECT)-*)
23
24info: $(PROJECT)
25#       cp $(PROJECT) $(PROJECT)-* $(INFO_INSTALL)
26        cp $(PROJECT) $(INFO_INSTALL)
27
28posix_users: $(FILES)
29        $(MAKEINFO) $(PROJECT).texi
30
31vinfo: info
32        $(INFO) -f ./$(PROJECT)
33
34dvi: $(PROJECT).dvi
35ps: $(PROJECT).ps
36       
37$(PROJECT).ps: $(PROJECT).dvi
38        dvips -o $(PROJECT).ps $(PROJECT).dvi
39        cp $(PROJECT).ps $(PS_INSTALL)
40
41dv: dvi
42        $(XDVI) $(PROJECT).dvi
43
44view: ps
45        $(GHOSTVIEW) $(PROJECT).ps
46
47$(PROJECT).dvi: $(FILES)
48        $(TEXI2DVI) $(PROJECT).texi
49
50html:
51        -mkdir -p $(WWW_INSTALL)/$(PROJECT)
52        -cd .. ; gmake headers
53        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
54            $(PROJECT).texi
55
56
57clean:
58        rm -f *.o $(PROG) *.txt core *.html
59        rm -f *.dvi *.ps *.log *.aux *.cp *.fn *.ky *.pg *.toc *.tp *.vr $(BASE)
60        rm -f $(PROJECT) $(PROJECT)-* _*
61
Note: See TracBrowser for help on using the repository browser.