source: rtems/c/src/lib/libbsp/m68k/ods68302/wrapup/Makefile.in @ 0074691a

4.104.114.84.95
Last change on this file since 0074691a was 0074691a, checked in by Joel Sherrill <joel.sherrill@…>, on 07/31/97 at 22:13:29

Merged very large and much appreciated patch from Chris Johns
<cjohns@…>. This patch includes the ods68302 bsp,
the RTEMS++ class library, and the rtems++ test.

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