source: rtems/doc/bsp_howto/Makefile.am @ 3ebc6dc

4.104.114.84.95
Last change on this file since 3ebc6dc was c7ddb172, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/24/03 at 11:16:56

2003-01-24 Ralf Corsepius <corsepiu@…>

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