source: rtems/c/src/lib/libbsp/m68k/gen68340/wrapup/Makefile.in @ 0280cb6

4.104.114.84.95
Last change on this file since 0280cb6 was a90b990, checked in by Joel Sherrill <joel.sherrill@…>, on 07/06/98 at 18:44:32

Missed this file in the initial merge.

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