source: rtems/c/src/lib/libbsp/powerpc/mpc8260ads/irq/Makefile.am @ 85a7695

4.104.114.84.95
Last change on this file since 85a7695 was cf40ab9b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/17/02 at 13:37:42

2002-12-17 Ralf Corsepius <corsepiu@…>

  • clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • irq/Makefile.am: Don't include @RTEMS_BSP@.cfg. Remove SORDID_HACK. Eliminate *_O_FILES.
  • network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • Property mode set to 100644
File size: 847 bytes
Line 
1##
2## $Id$
3##
4
5
6include_bspdir = $(includedir)/bsp
7
8C_FILES = irq.c irq_init.c
9OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
10
11include_bsp_HEADERS = irq.h
12
13S_FILES = irq_asm.S
14OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
15
16include $(top_srcdir)/../../../../../../automake/compile.am
17include $(top_srcdir)/../../../../../../automake/lib.am
18
19$(PROJECT_INCLUDE)/bsp:
20        $(mkinstalldirs) $@
21
22$(PROJECT_INCLUDE)/bsp/%.h: %.h
23        $(INSTALL_DATA) $< $@
24
25PREINSTALL_FILES = $(PROJECT_INCLUDE)/bsp \
26    $(include_bsp_HEADERS:%=$(PROJECT_INCLUDE)/bsp/%)
27
28#
29# (OPTIONAL) Add local stuff here using +=
30#
31
32$(PGM): $(OBJS)
33        $(make-rel)
34
35# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
36
37all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(PGM)
38
39EXTRA_DIST = irq.c irq.h irq_asm.S irq_init.c
40
41include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.