source: rtems/c/src/lib/libbsp/i960/cvme961/wrapup/Makefile.in @ 0162910

4.104.114.84.95
Last change on this file since 0162910 was 0162910, checked in by Joel Sherrill <joel.sherrill@…>, on 12/14/98 at 23:15:38

Patch from Ralf Corsepius <corsepiu@…> to rename all
.s files to .S in conformance with GNU conventions. This is a
minor step along the way to supporting automake.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11BSP_PIECES=startup clock console timer
12GENERIC_PIECES=
13
14include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
15include $(RTEMS_ROOT)/make/lib.cfg
16
17ifeq ($(HAS_MP),yes)
18GENERIC_PIECES += shmdr
19BSP_PIECES += shmsupp
20endif
21
22# bummer; have to use $foreach since % pattern subst rules only replace 1x
23OBJS=$(foreach piece, $(BSP_PIECES), ../$(piece)/$(ARCH)/$(piece).rel) \
24     $(foreach piece, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel)
25LIB=$(ARCH)/libbsp.a
26
27#
28# (OPTIONAL) Add local stuff here using +=
29#
30
31DEFINES  +=
32CPPFLAGS +=
33CFLAGS   +=
34
35LD_PATHS  +=
36LD_LIBS   +=
37LDFLAGS   +=
38
39#
40# Add your list of files to delete here.  The config files
41#  already know how to delete some stuff, so you may want
42#  to just run 'make clean' first to see what gets missed.
43#  'make clobber' already includes 'make clean'
44#
45
46CLEAN_ADDITIONS +=
47CLOBBER_ADDITIONS +=
48
49$(LIB): ${OBJS}
50        $(make-library)
51
52all:    ${ARCH} $(SRCS) $(LIB)
53        $(INSTALL_VARIANT) -m 644 $(LIB) ${PROJECT_RELEASE}/lib
54
55install:  all
56
Note: See TracBrowser for help on using the repository browser.