source: rtems/c/src/lib/libbsp/arm/nds/Makefile.am @ c193baad

4.104.115
Last change on this file since c193baad was c193baad, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 04/09/10 at 20:24:57

unify irq data types and code, merge s3c2400/s3c2410 support

  • Property mode set to 100644
File size: 9.6 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7SUBDIRS = . tools
8
9include $(top_srcdir)/../../../../automake/compile.am
10
11include_bspdir = $(includedir)/bsp
12
13dist_project_lib_DATA = bsp_specs
14
15include_HEADERS = include/bsp.h
16include_HEADERS += ../../shared/include/tm27.h
17
18nodist_include_HEADERS = include/bspopts.h
19nodist_include_HEADERS += ../../shared/include/coverhd.h
20
21nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
22DISTCLEANFILES = include/bspopts.h
23noinst_PROGRAMS =
24
25noinst_LIBRARIES = libbspstart.a
26libbspstart_a_SOURCES = start/start.S
27project_lib_DATA = start.$(OBJEXT)
28
29dist_project_lib_DATA += startup/linkcmds
30
31noinst_LIBRARIES += libbsp.a
32libbsp_a_SOURCES =
33
34include_ndsdir = $(includedir)/nds
35include_nds_HEADERS = touchscreen/touchscreen.h sound/sound.h
36
37noinst_PROGRAMS += startup.rel
38startup_rel_SOURCES = ../../shared/bsplibc.c ../../shared/bsppost.c \
39    startup/bspstart.c ../../shared/bspclean.c startup/bspreset.c \
40    startup/bspgetworkarea.c ../../shared/bsppredriverhook.c \
41    ../../shared/bsppretaskinghook.c ../../shared/bootcard.c
42startup_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM9 -I$(srcdir)/libnds/include
43startup_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
44
45noinst_PROGRAMS += gnatsupp.rel
46gnatsupp_rel_SOURCES = ../../shared/gnatinstallhandler.c
47gnatsupp_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM9 -I$(srcdir)/libnds/include
48gnatsupp_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
49
50noinst_PROGRAMS += clock.rel
51clock_rel_SOURCES = clock/clock.c ../../../shared/clockdrv_shell.h
52clock_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM9 -I$(srcdir)/libnds/include
53clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
54
55noinst_PROGRAMS += rtc.rel
56rtc_rel_SOURCES = rtc/rtc.c ../../shared/tod.c
57rtc_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM9 -I$(srcdir)/libnds/include
58rtc_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
59
60noinst_PROGRAMS += console.rel
61console_rel_SOURCES = console/console.c
62console_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM9 -I$(srcdir)/libnds/include -I$(srcdir)/include
63console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
64
65noinst_PROGRAMS += fb.rel
66fb_rel_SOURCES = fb/fb.c
67fb_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM9 -I$(srcdir)/libnds/include
68fb_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
69
70noinst_PROGRAMS += touchscreen.rel
71touchscreen_rel_SOURCES = touchscreen/touchscreen.c touchscreen/parser.c \
72                          touchscreen/reco.c
73touchscreen_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM9 -I$(srcdir)/libnds/include
74touchscreen_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
75
76noinst_PROGRAMS += timer.rel
77timer_rel_SOURCES = timer/timer.c
78timer_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM9 -I$(srcdir)/libnds/include
79timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
80
81noinst_PROGRAMS += sound.rel
82sound_rel_SOURCES = sound/sound.c
83sound_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM9 -I$(srcdir)/libnds/include
84sound_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
85
86noinst_PROGRAMS += block.rel
87block_rel_SOURCES = block/block.c
88block_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM9 -I$(srcdir)/libnds/include -DNDS -I$(srcdir)/libfat/source/disc_io
89block_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
90
91noinst_PROGRAMS += irq.rel
92irq_rel_SOURCES = irq/irq.c
93irq_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM9 -I$(srcdir)/libnds/include
94irq_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
95
96if HAS_NETWORKING
97noinst_PROGRAMS += wifi.rel
98wifi_rel_SOURCES =      wifi/wifi.c                                     \
99                        wifi/compat.c
100wifi_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM9 -I$(srcdir)/dswifi/include -I$(srcdir)/libnds/include -I$(srcdir)/dswifi/include -D_KERNEL -D__BSD_VISIBLE
101wifi_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
102endif
103
104# libnds, ARM9 side
105noinst_PROGRAMS += libnds9.rel
106bin2s:  $(srcdir)/tools/bin2s.c
107        cc -o $(srcdir)/tools/bin2s $(srcdir)/tools/bin2s.c
108
109SUFFIXES = .bin
110
111%.s:    %.bin bin2s
112        $(srcdir)/tools/bin2s $< > $(srcdir)/$@
113
114libnds9_rel_SOURCES =   libnds/source/common/biosCalls.S                \
115                        libnds/source/common/card.c                     \
116                        libnds/source/common/gbfs.c                     \
117                        libnds/source/common/interruptDispatcher.S      \
118                        libnds/source/common/interrupts.c               \
119                        libnds/source/arm9/boxtest.c                    \
120                        libnds/source/arm9/default_font.S               \
121                        libnds/source/arm9/console.c                    \
122                        libnds/source/arm9/COS.S                        \
123                        libnds/source/arm9/dcache.S                     \
124                        libnds/source/arm9/exceptionHandler.S           \
125                        libnds/source/arm9/exceptions.c                 \
126                        libnds/source/arm9/gurumeditation.c             \
127                        libnds/source/arm9/icache.S                     \
128                        libnds/source/arm9/image.c                      \
129                        libnds/source/arm9/initSystem.c                 \
130                        libnds/source/arm9/keys.c                       \
131                        libnds/source/arm9/ndsmotion.c                  \
132                        libnds/source/arm9/pcx.c                        \
133                        libnds/source/arm9/rumble.c                     \
134                        libnds/source/arm9/SIN.S                        \
135                        libnds/source/arm9/sound.c                      \
136                        libnds/source/arm9/system.c                     \
137                        libnds/source/arm9/TAN.S                        \
138                        libnds/source/arm9/touch.c                      \
139                        libnds/source/arm9/video.c                      \
140                        libnds/source/arm9/videoGL.c
141libnds9_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM9 -I$(srcdir)/libnds/include -I$(srcdir)/include
142libnds9_rel_CCASFLAGS = $(AM_CCASFLAGS) -DARM9 -I$(srcdir)/libnds/include
143libnds9_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
144
145if HAS_NETWORKING
146# dswifi, ARM9 side
147noinst_PROGRAMS += dswifi9.rel
148dswifi9_rel_SOURCES =   dswifi/arm9/source/wifi_arm9.c                  \
149                        dswifi/common/source/spinlock.S
150dswifi9_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM9 -I$(srcdir)/dswifi/include -I$(srcdir)/libnds/include -I$(srcdir)/dswifi/common/source -I$(srcdir)/wifi -D_KERNEL
151dswifi9_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
152endif
153
154# dldi
155noinst_PROGRAMS += libdldi.rel
156libdldi_rel_SOURCES =   libfat/source/disc_io/disc.c                    \
157                        libfat/source/disc_io/io_cf_common.c            \
158                        libfat/source/disc_io/io_efa2.c                 \
159                        libfat/source/disc_io/io_fcsr.c                 \
160                        libfat/source/disc_io/io_m3cf.c                 \
161                        libfat/source/disc_io/io_m3_common.c            \
162                        libfat/source/disc_io/io_m3sd.c                 \
163                        libfat/source/disc_io/io_mpcf.c                 \
164                        libfat/source/disc_io/io_njsd.c                 \
165                        libfat/source/disc_io/io_nmmc.c                 \
166                        libfat/source/disc_io/io_sccf.c                 \
167                        libfat/source/disc_io/io_sc_common.c            \
168                        libfat/source/disc_io/io_scsd.c                 \
169                        libfat/source/disc_io/io_sd_common.c            \
170                        libfat/source/disc_io/io_dldi.S                 \
171                        libfat/source/disc_io/io_scsd_s.S
172libdldi_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM9 -I$(srcdir)/libnds/include -I$(srcdir)/libfat/source/disc_io
173libdldi_rel_CCASFLAGS = $(AM_CCASFLAGS) -DARM9 -I$(srcdir)/libnds/include -I$(srcdir)/libfat/source/disc_io
174libdldi_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
175
176# libnds, ARM7 side
177noinst_PROGRAMS += libnds7.rel
178libnds7_rel_SOURCES =   libnds/source/common/biosCalls.S                \
179                        libnds/source/common/card.c                     \
180                        libnds/source/common/gbfs.c                     \
181                        libnds/source/common/interruptDispatcher.S      \
182                        libnds/source/common/interrupts.c               \
183                        libnds/source/arm7/audio.c                      \
184                        libnds/source/arm7/clock.c                      \
185                        libnds/source/arm7/microphone.c                 \
186                        libnds/source/arm7/spi.c                        \
187                        libnds/source/arm7/touch.c                      \
188                        libnds/source/arm7/userSettings.c
189libnds7_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM7 -I$(srcdir)/libnds/include
190libnds7_rel_CFLAGS = -mcpu=arm7tdmi -msoft-float
191libnds7_rel_CCASFLAGS = -mcpu=arm7tdmi -msoft-float
192libnds7_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
193
194if HAS_NETWORKING
195# dswifi, ARM7 side
196noinst_PROGRAMS += dswifi7.rel
197dswifi7_rel_SOURCES =   dswifi/arm7/source/wifi_arm7.c                  \
198                        dswifi/common/source/spinlock.S
199dswifi7_rel_CPPFLAGS = $(AM_CPPFLAGS) -DARM7 -I$(srcdir)/dswifi/include -I$(srcdir)/libnds/include -I$(srcdir)/dswifi/common/source
200dswifi7_rel_CFLAGS = -mcpu=arm7tdmi -msoft-float
201dswifi7_rel_CCASFLAGS = -mcpu=arm7tdmi -msoft-float
202dswifi7_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
203endif
204
205# include libnds to dist so the user program can include it
206include_libndsdir = $(includedir)/libnds
207include_libnds_HEADERS =        libnds/include/gbfs.h                   \
208                                libnds/include/nds.h
209
210include_libndsndsdir = $(includedir)/libnds/nds
211include_libndsnds_HEADERS =     libnds/include/nds/memory.h             \
212                                libnds/include/nds/system.h             \
213                                libnds/include/nds/bios.h               \
214                                libnds/include/nds/registers_alt.h      \
215                                libnds/include/nds/interrupts.h         \
216                                libnds/include/nds/card.h               \
217                                libnds/include/nds/ipc.h                \
218                                libnds/include/nds/timers.h             \
219                                libnds/include/nds/dma.h                \
220                                libnds/include/nds/reload.h             \
221                                libnds/include/nds/jtypes.h
222
223include_libndsnds9dir = $(includedir)/libnds/nds/arm9
224include_libndsnds9_HEADERS =    libnds/include/nds/arm9/ndsmotion.h     \
225                                libnds/include/nds/arm9/pcx.h           \
226                                libnds/include/nds/arm9/input.h         \
227                                libnds/include/nds/arm9/math.h          \
228                                libnds/include/nds/arm9/console.h       \
229                                libnds/include/nds/arm9/sprite.h        \
230                                libnds/include/nds/arm9/videoGL.h       \
231                                libnds/include/nds/arm9/cache.h         \
232                                libnds/include/nds/arm9/image.h         \
233                                libnds/include/nds/arm9/trig_lut.h      \
234                                libnds/include/nds/arm9/video.h         \
235                                libnds/include/nds/arm9/exceptions.h    \
236                                libnds/include/nds/arm9/rumble.h        \
237                                libnds/include/nds/arm9/background.h    \
238                                libnds/include/nds/arm9/boxtest.h       \
239                                libnds/include/nds/arm9/postest.h       \
240                                libnds/include/nds/arm9/sound.h
241
242include_libndsnds7dir = $(includedir)/libnds/nds/arm7
243include_libndsnds7_HEADERS =    libnds/include/nds/arm7/serial.h        \
244                                libnds/include/nds/arm7/audio.h         \
245                                libnds/include/nds/arm7/clock.h         \
246                                libnds/include/nds/arm7/touch.h
247EXTRA_DIST = coproc/coproc.S coproc/coproc.c
248if HAS_NETWORKING
249coproc.bin: coproc/coproc.S coproc/coproc.c libnds7.rel dswifi7.rel
250        @CC@ -o coproc.elf -mcpu=arm7tdmi -msoft-float -O2 -DARM7 -I$(srcdir)/libnds/include -I$(srcdir)/dswifi/include -DENABLE_WIFI -T $(srcdir)/coproc/coproc.ld $^ -lc
251        $(OBJCOPY) -O binary coproc.elf coproc.bin
252else
253coproc.bin: coproc/coproc.S coproc/coproc.c libnds7.rel
254        @CC@ -o coproc.elf -mcpu=arm7tdmi -msoft-float -O2 -DARM7 -I$(srcdir)/libnds/include -T $(srcdir)/coproc/coproc.ld $^ -lc
255        $(OBJCOPY) -O binary coproc.elf coproc.bin
256endif
257project_lib_DATA += coproc.bin
258
259libbsp_a_LIBADD = clock.rel console.rel gnatsupp.rel startup.rel irq.rel \
260    timer.rel libnds9.rel rtc.rel fb.rel touchscreen.rel sound.rel \
261    block.rel libdldi.rel
262
263if HAS_NETWORKING
264    libbsp_a_LIBADD += wifi.rel dswifi9.rel
265endif
266
267include $(srcdir)/preinstall.am
268include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.