source: rtems/doc/itron3.0/Makefile.am @ 6449498

4.104.114.84.95
Last change on this file since 6449498 was 6449498, checked in by Joel Sherrill <joel.sherrill@…>, on 01/17/02 at 21:47:47

2001-01-17 Joel Sherrill <joel@…>

  • SUPPORT, LICENSE: New files.
  • Numerous files touched as part of merging the 4.5 branch onto the mainline development trunk and ensuring that the script that cuts snapshots and releases works on the documentation.
  • Property mode set to 100644
File size: 2.1 KB
Line 
1#
2#  COPYRIGHT (c) 1988-2002.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6#  $Id$
7#
8
9AUTOMAKE_OPTIONS = foreign 1.4
10
11PROJECT = itron
12EDITION = 1
13
14include $(top_srcdir)/project.am
15
16COMMON_FILES = $(top_srcdir)/common/setup.texi
17
18GENERATED_FILES = status.texi task.texi tasksync.texi semaphore.texi \
19    eventflags.texi mailbox.texi msgbuffer.texi rendezvous.texi \
20    interrupt.texi memorypool.texi fixedblock.texi time.texi config.texi \
21    network.texi
22
23FILES = preface.texi
24
25info_TEXINFOS = itron.texi
26itron_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
27
28$(srcdir)/status.texi: status.t
29        $(BMENU2) -p "" \
30            -u "Top" \
31            -n "" < $< > $@
32
33$(srcdir)/task.texi: task.t
34        $(BMENU2) -p "" \
35            -u "Top" \
36            -n "" < $< > $@
37
38$(srcdir)/tasksync.texi: tasksync.t
39        $(BMENU2) -p "" \
40            -u "Top" \
41            -n "" < $< > $@
42
43$(srcdir)/semaphore.texi: semaphore.t
44        $(BMENU2) -p "" \
45            -u "Top" \
46            -n "" < $< > $@
47
48$(srcdir)/eventflags.texi: eventflags.t
49        $(BMENU2) -p "" \
50            -u "Top" \
51            -n "" < $< > $@
52
53$(srcdir)/mailbox.texi: mailbox.t
54        $(BMENU2) -p "" \
55            -u "Top" \
56            -n "" < $< > $@
57
58$(srcdir)/msgbuffer.texi: msgbuffer.t
59        $(BMENU2) -p "" \
60            -u "Top" \
61            -n "" < $< > $@
62
63$(srcdir)/rendezvous.texi: rendezvous.t
64        $(BMENU2) -p "" \
65            -u "Top" \
66            -n "" < $< > $@
67
68$(srcdir)/interrupt.texi: interrupt.t
69        $(BMENU2) -p "" \
70            -u "Top" \
71            -n "" < $< > $@
72
73$(srcdir)/memorypool.texi: memorypool.t
74        $(BMENU2) -p "" \
75            -u "Top" \
76            -n "" < $< > $@
77
78$(srcdir)/fixedblock.texi: fixedblock.t
79        $(BMENU2) -p "" \
80            -u "Top" \
81            -n "" < $< > $@
82
83$(srcdir)/time.texi: time.t
84        $(BMENU2) -p "" \
85            -u "Top" \
86            -n "" < $< > $@
87
88$(srcdir)/config.texi: config.t
89        $(BMENU2) -p "" \
90            -u "Top" \
91            -n "" < $< > $@
92
93$(srcdir)/network.texi: network.t
94        $(BMENU2) -p "" \
95            -u "Top" \
96            -n "" < $< > $@
97
98noinst_SCRIPTS = gen_all gen_section gen_status_shell
99
100EXTRA_DIST = config.t eventflags.t fixedblock.t interrupt.t mailbox.t \
101    memorypool.t msgbuffer.t network.t rendezvous.t semaphore.t status.t \
102    task.t tasksync.t time.t $(noinst_SCRIPTS)
Note: See TracBrowser for help on using the repository browser.