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

4.104.114.84.95
Last change on this file since a802f6f was a802f6f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/12/03 at 13:29:25

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

  • irq/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • vectors/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • Property mode set to 100644
File size: 923 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        @$(mkdir_p) $(PROJECT_INCLUDE)/bsp
35        @: > $(PROJECT_INCLUDE)/bsp/$(dirstamp)
36
37$(PROJECT_INCLUDE)/bsp/irq.h: irq.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
38        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/irq.h
39PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/irq.h
40
41include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.