source: rtems/c/src/lib/libbsp/mips64orion/p4000/wrapup/Makefile.in @ e1d8abb

4.104.114.84.95
Last change on this file since e1d8abb was e1d8abb, checked in by Joel Sherrill <joel.sherrill@…>, on 09/07/99 at 13:45:03

Applied patch rtems-rc-19990820-6.diff.gz from
Ralf Corsepius <corsepiu@…> which converted many
Makefile.in's to Makefile.am's. This added a lot of files.

  • Property mode set to 100644
File size: 1.5 KB
RevLine 
[254b4450]1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
[d8ff793]7top_srcdir = @top_srcdir@
[e1d8abb]8top_builddir = ../../..
9subdir = mips64orion/p4000/wrapup
[254b4450]10
[6693a68]11RTEMS_ROOT = @RTEMS_ROOT@
[d8ff793]12PROJECT_ROOT = @PROJECT_ROOT@
13
14VPATH = @srcdir@
15
[6693a68]16BSP_PIECES = startup console liblnk
17CPU_PIECES = clock timer
18GENERIC_PIECES =
[254b4450]19
20# bummer; have to use $foreach since % pattern subst rules only replace 1x
[6693a68]21OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
22    $(foreach piece, $(CPU_PIECES), \
23    ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/$(piece).rel) $(foreach \
24    piece, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel)
25LIB = $(ARCH)/libbsp.a
[254b4450]26
[6693a68]27include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[cb5bfe4]28include $(RTEMS_ROOT)/make/lib.cfg
[254b4450]29
[6693a68]30INSTALL = @INSTALL@
31INSTALL_CHANGE = @INSTALL_CHANGE@
32
[254b4450]33#
34# (OPTIONAL) Add local stuff here using +=
35#
36
[6693a68]37DEFINES +=
[254b4450]38CPPFLAGS +=
[6693a68]39CFLAGS +=
[254b4450]40
[6693a68]41LD_PATHS +=
42LD_LIBS +=
43LDFLAGS +=
[254b4450]44
45#
46# Add your list of files to delete here.  The config files
47#  already know how to delete some stuff, so you may want
48#  to just run 'make clean' first to see what gets missed.
49#  'make clobber' already includes 'make clean'
50#
51
52CLEAN_ADDITIONS +=
53CLOBBER_ADDITIONS +=
54
55$(LIB): ${OBJS}
56        $(make-library)
57
[6693a68]58all: ${ARCH} $(SRCS) $(LIB)
59        $(INSTALL_VARIANT) -m 644 $(LIB) $(PROJECT_RELEASE)/lib
[254b4450]60
[6693a68]61install: all
[254b4450]62
[6693a68]63$(PROJECT_ROOT)/@RTEMS_BSP@/lib/bsp_specs: ../bsp_specs
[5906ac5]64        $(INSTALL_DATA) $< $@
65
[08b5f55]66Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
[d8ff793]67        cd $(top_builddir) \
68         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.