source: rtems/c/src/lib/libbsp/m68k/gen68360/startup/Makefile.in @ ecc4594

4.104.114.84.95
Last change on this file since ecc4594 was ecc4594, checked in by Joel Sherrill <joel.sherrill@…>, on 04/15/97 at 17:28:26

Removed many BSPs' copy of setvec.c and let them share the same
implementation as all m68k BSPs.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8VPATH=@srcdir@:@srcdir@/../../shared
9
10PGM=${ARCH}/startup.rel
11
12# C source names, if any, go here -- minus the .c
13C_PIECES=alloc360 bspstart bspclean init68360 sbrk setvec
14C_FILES=$(C_PIECES:%=%.c)
15C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
16
17H_FILES=
18
19SRCS=$(srcdir)/linkcmds $(srcdir)/linkcmds.prom $(srcdir)/linkcmds.bootp \
20     $(C_FILES) $(H_FILES)
21OBJS=$(C_O_FILES) $(CC_O_FILES)
22
23include $(RTEMS_CUSTOM)
24include $(PROJECT_ROOT)/make/leaf.cfg
25
26#
27# (OPTIONAL) Add local stuff here using +=
28#
29
30DEFINES  +=
31CPPFLAGS +=
32CFLAGS   +=
33
34LD_PATHS  +=
35LD_LIBS   +=
36LDFLAGS   +=
37
38#
39# Add your list of files to delete here.  The config files
40#  already know how to delete some stuff, so you may want
41#  to just run 'make clean' first to see what gets missed.
42#  'make clobber' already includes 'make clean'
43#
44
45CLEAN_ADDITIONS +=
46CLOBBER_ADDITIONS +=
47
48${PGM}: ${SRCS} ${OBJS}
49        $(make-rel)
50
51all:    ${ARCH} $(SRCS) $(PGM)
52        $(INSTALL) $(srcdir)/linkcmds $(srcdir)/linkcmds.prom ${PROJECT_RELEASE}/lib
53
54# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
55
Note: See TracBrowser for help on using the repository browser.