source: rtems/c/src/lib/libbsp/powerpc/mpc8260ads/irq/Makefile.am @ 0896b3c5

4.104.114.84.95
Last change on this file since 0896b3c5 was 0896b3c5, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/03/03 at 14:38:00

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

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