## # # @file # # @brief Makefile of LibBSP for the LPC24XX boards. # # $Id$ ACLOCAL_AMFLAGS = -I ../../../../aclocal include $(top_srcdir)/../../../../automake/compile.am include_bspdir = $(includedir)/bsp dist_project_lib_DATA = bsp_specs ############################################################################### # Header # ############################################################################### include_HEADERS = include/bsp.h nodist_include_HEADERS = ../../shared/include/coverhd.h \ include/bspopts.h nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h include_bsp_HEADERS = include_bsp_HEADERS += ../../shared/include/utility.h include_bsp_HEADERS += ../../shared/include/irq-generic.h include_bsp_HEADERS += ../../shared/include/irq-info.h include_bsp_HEADERS += ../../shared/include/stackalloc.h include_bsp_HEADERS += ../../shared/tod.h include_bsp_HEADERS += ../shared/include/linker-symbols.h include_bsp_HEADERS += ../shared/include/start.h include_bsp_HEADERS += ../shared/lpc/include/lpc-timer.h include_bsp_HEADERS += include/irq-config.h include_bsp_HEADERS += include/irq.h include_bsp_HEADERS += include/lpc24xx.h include_bsp_HEADERS += include/system-clocks.h include_bsp_HEADERS += include/ssp.h include_bsp_HEADERS += include/dma.h include_bsp_HEADERS += include/i2c.h include_bsp_HEADERS += include/io.h include_bsp_HEADERS += include/lpc-clock-config.h include_HEADERS += ../../shared/include/tm27.h ############################################################################### # Data # ############################################################################### noinst_LIBRARIES = libbspstart.a libbspstart_a_SOURCES = ../shared/start/start.S project_lib_DATA = start.$(OBJEXT) project_lib_DATA += startup/linkcmds project_lib_DATA += ../shared/startup/linkcmds.base EXTRA_DIST = startup/linkcmds.lpc24xx_ea EXTRA_DIST += startup/linkcmds.lpc24xx_ncs_rom_int EXTRA_DIST += startup/linkcmds.lpc24xx_ncs_rom_ext EXTRA_DIST += startup/linkcmds.lpc24xx_ncs_ram EXTRA_DIST += startup/linkcmds.lpc2362 ############################################################################### # LibBSP # ############################################################################### noinst_LIBRARIES += libbsp.a libbsp_a_SOURCES = # Shared libbsp_a_SOURCES += ../../shared/bootcard.c \ ../../shared/bspclean.c \ ../../shared/bspgetworkarea.c \ ../../shared/bsplibc.c \ ../../shared/bsppost.c \ ../../shared/bsppredriverhook.c \ ../../shared/bsppretaskinghook.c \ ../../shared/gnatinstallhandler.c \ ../../shared/sbrk.c \ ../../shared/src/stackalloc.c \ ../shared/abort/simple_abort.c # Startup libbsp_a_SOURCES += startup/bspstart.c \ startup/bspreset.c # IRQ libbsp_a_SOURCES += ../../shared/src/irq-generic.c \ ../../shared/src/irq-legacy.c \ ../../shared/src/irq-info.c \ ../../shared/src/irq-shell.c \ ../../shared/src/irq-server.c \ irq/irq.c # Console libbsp_a_SOURCES += ../../shared/console.c \ console/console-config.c # Clock libbsp_a_SOURCES += ../shared/lpc/clock/lpc-clock-config.c \ ../../../shared/clockdrv_shell.h # RTC libbsp_a_SOURCES += ../../shared/tod.c \ rtc/rtc-config.c # Misc libbsp_a_SOURCES += misc/system-clocks.c \ misc/dma.c \ misc/dma-copy.c \ misc/bspidle.c \ misc/io.c \ misc/timer.c # SSP libbsp_a_SOURCES += ssp/ssp.c # I2C libbsp_a_SOURCES += i2c/i2c.c # Start hooks (FIXME: This is brittle.) libbsp_a_SOURCES += startup/bspstarthooks.c bspstarthooks.o: startup/bspstarthooks.c $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS:-mthumb=) \ -MT bspstarthooks.o -MD -MP -MF $(DEPDIR)/bspstarthooks.Tpo -c -o bspstarthooks.o \ `test -f 'startup/bspstarthooks.c' || echo '$(srcdir)/'`startup/bspstarthooks.c ############################################################################### # Network # ############################################################################### if HAS_NETWORKING noinst_PROGRAMS = network.rel network_rel_SOURCES = network/network.c network_rel_CPPFLAGS = $(AM_CPPFLAGS) -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ -D__BSD_VISIBLE network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS) libbsp_a_LIBADD = network.rel endif ############################################################################### # Special Rules # ############################################################################### DISTCLEANFILES = include/bspopts.h include $(srcdir)/preinstall.am include $(top_srcdir)/../../../../automake/local.am