source: rtems/doc/bsp_howto/Makefile.am @ dfc2df61

4.10
Last change on this file since dfc2df61 was dfc2df61, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/11/10 at 07:39:50

Remove EDITION (Unused)

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