source: rtems/c/src/lib/libbsp/powerpc/eth_comm/irq/Makefile.am @ 6d871a5f

4.104.114.84.95
Last change on this file since 6d871a5f was 6d871a5f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/02/03 at 05:42:13

2003-12-02 Ralf Corsepius <corsepiu@…>

  • canbus/Makefile.am: Remove all-local: $(ARCH).
  • clock/Makefile.am: Remove all-local: $(ARCH).
  • console/Makefile.am: Remove all-local: $(ARCH).
  • irq/Makefile.am: Remove all-local: $(ARCH).
  • network/Makefile.am: Remove all-local: $(ARCH).
  • start/Makefile.am: Remove all-local: $(ARCH).
  • startup/Makefile.am: Remove all-local: $(ARCH).
  • vectors/Makefile.am: Remove all-local: $(ARCH).
  • wrapup/Makefile.am: Remove all-local: $(ARCH).
  • Property mode set to 100644
File size: 815 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) $(OBJS) $(PGM)
38
39EXTRA_DIST = irq.c irq_asm.S irq_init.c
40
41include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.