source: rtems/doc/bsp_howto/Makefile.am @ 9847d61d

4.115
Last change on this file since 9847d61d was 9847d61d, checked in by Ralf Corsépius <ralf.corsepius@…>, on 05/04/12 at 06:58:25

Remove CVS-Ids.

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