source: rtems/c/src/lib/libbsp/powerpc/mpc8260ads/vectors/Makefile.am @ 2cd1ba5

4.104.114.84.95
Last change on this file since 2cd1ba5 was 2cd1ba5, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/03/03 at 16:02:16

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

  • startup/Makefile.am: Remove S_FILES (Unused).
  • vectors/Makefile.am: Cosmetics.
  • wrapup/Makefile.am: Cosmetics.
  • Property mode set to 100644
File size: 914 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        @$(mkinstalldirs) $(PROJECT_INCLUDE)/bsp
32        @: > $(PROJECT_INCLUDE)/bsp/$(dirstamp)
33PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/$(dirstamp)
34
35$(PROJECT_INCLUDE)/bsp/vectors.h: vectors.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
36        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/vectors.h
37PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/vectors.h
38
39include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.