source: rtems/c/src/lib/libbsp/powerpc/score603e/startup/Makefile.in @ e1d8abb

4.104.114.84.95
Last change on this file since e1d8abb was e1d8abb, checked in by Joel Sherrill <joel.sherrill@…>, on 09/07/99 at 13:45:03

Applied patch rtems-rc-19990820-6.diff.gz from
Ralf Corsepius <corsepiu@…> which converted many
Makefile.in's to Makefile.am's. This added a lot of files.

  • Property mode set to 100644
File size: 1.8 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8top_builddir = ../../..
9subdir = powerpc/score603e/startup
10
11RTEMS_ROOT = @RTEMS_ROOT@
12PROJECT_ROOT = @PROJECT_ROOT@
13
14VPATH = @srcdir@:@srcdir@/../../../shared
15
16PGM = ${ARCH}/startup.rel
17
18# C source names, if any, go here -- minus the .c
19#
20# First and second generation use different Bridge chips :(
21#       Generation 1 --> 82378zb
22#       Generation 2 --> FPGA
23STARTUP_C_PIECES = 82378zb FPGA
24
25C_PIECES = bspclean bsplibc bsppost bspstart bootcard main sbrk setvec \
26    Hwr_init spurious genpvec $(STARTUP_C_PIECES) gnatinstallhandler
27C_FILES = $(C_PIECES:%=%.c)
28C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
29
30H_FILES =
31
32# Assembly source names, if any, go here -- minus the .s
33S_PIECES =
34S_FILES = $(S_PIECES:%=%.s)
35S_O_FILES = $(S_FILES:%.s=${ARCH}/%.o)
36
37SRCS = linkcmds $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
38OBJS = $(C_O_FILES) $(S_O_FILES)
39
40include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
41include $(RTEMS_ROOT)/make/leaf.cfg
42
43INSTALL_CHANGE = @INSTALL_CHANGE@
44mkinstalldirs = $(SHELL) $(top_srcdir)/@RTEMS_TOPdir@/mkinstalldirs
45
46INSTALLDIRS = $(PROJECT_RELEASE)/lib
47
48$(INSTALLDIRS):
49        @$(mkinstalldirs) $(INSTALLDIRS)
50
51#
52# (OPTIONAL) Add local stuff here using +=
53#
54
55DEFINES +=
56CPPFLAGS +=
57CFLAGS +=
58
59LD_PATHS +=
60LD_LIBS +=
61LDFLAGS +=
62
63#
64# Add your list of files to delete here.  The config files
65#  already know how to delete some stuff, so you may want
66#  to just run 'make clean' first to see what gets missed.
67#  'make clobber' already includes 'make clean'
68#
69
70CLEAN_ADDITIONS +=
71CLOBBER_ADDITIONS +=
72
73${PGM}: ${SRCS} ${OBJS}
74        $(make-rel)
75
76all: ${ARCH} $(SRCS) $(PGM)
77        $(INSTALL_CHANGE) -m 644 $(srcdir)/linkcmds $(PROJECT_RELEASE)/lib
78
79Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
80        cd $(top_builddir) \
81         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.