source: rtems/c/src/lib/libbsp/powerpc/motorola_powerpc/wrapup/Makefile.in @ 5a820308

4.104.114.84.95
Last change on this file since 5a820308 was 5a820308, checked in by Joel Sherrill <joel.sherrill@…>, on 12/03/99 at 13:42:34

Modification from Emmanuel Raguet <raguet@…> to merge the
dec21140 drivers from the i386/pc386 and powerpc/mcp750 (all Motorola
PowerPC boards) and move the network driver to libchip. This driver
should work on all PCI based uses of this chip.

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