source: rtems/doc/bsp_howto/Makefile.am @ 47eab0a

4.9
Last change on this file since 47eab0a was 47eab0a, checked in by Joel Sherrill <joel.sherrill@…>, on 12/11/08 at 15:50:02

2008-12-11 Sebastian Huber <sebastian.huber@…>

Joel Sherrrill <joel.sherrill@…>

  • bsp_howto/Makefile.am, bsp_howto/console.t: Sebastian improved documentation for termios device drivers.
  • bsp_howto/TERMIOSFlow.eps, bsp_howto/TERMIOSFlow.png: New files. Joel added Termios Flow figure from RTEMS Open Class material.
  • Property mode set to 100644
File size: 2.8 KB
Line 
1#
2#  COPYRIGHT (c) 1988-2002.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6#  $Id$
7#
8
9PROJECT = bsp_howto
10EDITION = 1
11
12include $(top_srcdir)/project.am
13include $(top_srcdir)/main.am
14
15GENERATED_FILES = intro.texi target.texi makefiles.texi linkcmds.texi \
16    support.texi adaintr.texi init.texi console.texi clock.texi timer.texi \
17    rtc.texi ata.texi ide-ctrl.texi nvmem.texi network.texi shmsupp.texi \
18    analog.texi discrete.texi
19
20COMMON_FILES += $(top_srcdir)/common/cpright.texi
21
22PNG_FILES = Developer-User-Timeline.png BSPInitFlowchart-49.png \
23    TERMIOSFlow.png
24
25if USE_HTML
26html_project_DATA += $(PNG_FILES)
27endif
28
29FILES =
30
31info_TEXINFOS = bsp_howto.texi
32bsp_howto_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
33
34#
35#  Process Automatically Generated Files
36#
37
38intro.texi: intro.t
39        $(BMENU2) -p "Top" \
40            -u "Top" \
41            -n "Target Dependent Files" < $< > $@
42
43target.texi: target.t
44        $(BMENU2) -p "Introduction" \
45            -u "Top" \
46            -n "Makefiles" < $< > $@
47
48makefiles.texi: makefiles.t
49        $(BMENU2) -p "Target Dependent Files Board Support Package Structure" \
50            -u "Top" \
51            -n "Linker Script" < $< > $@
52
53linkcmds.texi: linkcmds.t
54        $(BMENU2) -p "Makefiles Creating a New BSP Make Customization File" \
55            -u "Top" \
56            -n "Ada95 Interrupt Support" < $< > $@
57
58adaintr.texi: adaintr.t
59        $(BMENU2) -p "Linker Script Initialized Data" \
60            -u "Top" \
61            -n "Miscellaneous Support Files" < $< > $@
62
63support.texi: support.t
64        $(BMENU2) -p "Ada95 Interrupt Support Version Requirements" \
65            -u "Top" \
66            -n "" < $< > $@
67
68init.texi: init.t
69        $(BMENU2) -p "" \
70            -u "Top" \
71            -n "" < $< > $@
72
73console.texi: console.t
74        $(BMENU2) -p "" \
75            -u "Top" \
76            -n "" < $< > $@
77
78clock.texi: clock.t
79        $(BMENU2) -p "" \
80            -u "Top" \
81            -n "" < $< > $@
82
83timer.texi: timer.t
84        $(BMENU2) -p "" \
85            -u "Top" \
86            -n "" < $< > $@
87
88rtc.texi: rtc.t
89        $(BMENU2) -p "" \
90            -u "Top" \
91            -n "" < $< > $@
92
93ata.texi: ata.t
94        $(BMENU2) -p "" \
95            -u "Top" \
96            -n "" < $< > $@
97
98ide-ctrl.texi: ide-ctrl.t
99        $(BMENU2) -p "" \
100            -u "Top" \
101            -n "" < $< > $@
102
103nvmem.texi: nvmem.t
104        $(BMENU2) -p "" \
105            -u "Top" \
106            -n "" < $< > $@
107#
108#  Grab the chapter on writing a network device driver.
109#
110network.texi: ../networking/driver.t
111        $(BMENU2) -p "" \
112            -u "Top" \
113            -n "" < $< > $@
114
115shmsupp.texi: shmsupp.t
116        $(BMENU2) -p "" \
117            -u "Top" \
118            -n "" < $< > $@
119
120analog.texi: analog.t
121        $(BMENU2) -p "" \
122            -u "Top" \
123            -n "" < $< > $@
124
125discrete.texi: discrete.t
126        $(BMENU2) -p "" \
127            -u "Top" \
128            -n "" < $< > $@
129
130CLEANFILES += bsp_howto.info bsp_howto.info-?
131
132EXTRA_DIST = adaintr.t analog.t ata.t clock.t console.t discrete.t \
133    ide-ctrl.t init.t intro.t linkcmds.t makefiles.t nvmem.t rtc.t shmsupp.t \
134    support.t target.t timer.t $(PNG_FILES) $(EPS_IMAGES)
Note: See TracBrowser for help on using the repository browser.