source: rtems/c/src/lib/libbsp/powerpc/mbx8xx/irq/Makefile.am @ 35bb69b

4.104.114.84.95
Last change on this file since 35bb69b was 35bb69b, checked in by Joel Sherrill <joel.sherrill@…>, on 04/06/01 at 15:52:03

2001-03-30 Eric Valette <valette@…>

  • clock/.cvsignore, clock/Makefile.am, clock/p_clock.c, include/8xx_immap.h, include/commproc.h, include/mbx.h, irq/.cvsignore, irq/Makefile.am, irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c, vectors/.cvsignore, vectors/Makefile.am, vectors/vectors.S, vectors/vectors.h, vectors/vectors_init.c: New files.
  • Makefile.am, configure.in, console/console.c, include/Makefile.am, network/network.c, startup/Makefile.am, startup/bspstart.c, startup/imbx8xx.c, startup/linkcmds, startup/mmutlbtab.c, startup/start.S, wrapup/Makefile.am: The modifications to this BSP reflect the conversion of the mpc8xx CPU to the "new exception processing model."
  • Property mode set to 100644
File size: 962 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7C_FILES = irq.c irq_init.c
8C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
9
10H_FILES = irq.h
11
12S_FILES = irq_asm.S
13S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
14
15OBJS = $(C_O_FILES) $(S_O_FILES)
16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
18include $(top_srcdir)/../../../../../../automake/compile.am
19include $(top_srcdir)/../../../../../../automake/lib.am
20
21SORDID_HACK:
22        rm -f $(PROJECT_INCLUDE)/bsp/irq.h
23
24$(PROJECT_INCLUDE)/bsp:
25        $(mkinstalldirs) $@
26
27$(PROJECT_INCLUDE)/bsp/%.h: %.h
28        $(INSTALL_DATA) $< $@
29
30PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp \
31    $(H_FILES:%.h=$(PROJECT_INCLUDE)/bsp/%.h)
32
33#
34# (OPTIONAL) Add local stuff here using +=
35#
36
37$(PGM): $(OBJS)
38        $(make-rel)
39
40# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
41
42all-local: SORDID_HACK $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(PGM)
43
44EXTRA_DIST = irq.c irq.h irq_asm.S irq_init.c
45
46include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.