source: rtems/c/src/lib/libbsp/powerpc/mpc8260ads/vectors/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: 853 bytes
Line 
1##
2## $Id$
3##
4
5C_FILES = vectors_init.c
6C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
7
8include_bspdir = $(includedir)/bsp
9include_bsp_HEADERS = vectors.h
10
11S_FILES = vectors.S
12S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
13
14OBJS = $(S_O_FILES) $(C_O_FILES)
15
16include $(top_srcdir)/../../../../automake/compile.am
17include $(top_srcdir)/../../../../automake/lib.am
18
19#
20# (OPTIONAL) Add local stuff here using +=
21#
22
23$(PGM): $(OBJS)
24        $(make-rel)
25
26all-local: $(PREINSTALL_FILES) $(OBJS)
27
28PREINSTALL_FILES =
29
30$(PROJECT_INCLUDE)/bsp/$(dirstamp):
31        @$(mkdir_p) $(PROJECT_INCLUDE)/bsp
32        @: > $(PROJECT_INCLUDE)/bsp/$(dirstamp)
33
34$(PROJECT_INCLUDE)/bsp/vectors.h: vectors.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
35        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/vectors.h
36PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/vectors.h
37
38include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.