source: rtems/c/src/lib/libbsp/i386/pc386/wrapup/Makefile.in @ 96d56b3

4.104.114.84.95
Last change on this file since 96d56b3 was 96d56b3, checked in by Joel Sherrill <joel.sherrill@…>, on 04/27/98 at 18:42:04

Update from Pedro Romano <pmcnr@…>.

  • 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
14# bummer; have to use $foreach since % pattern subst rules only replace 1x
15OBJS=$(foreach piece, $(BSP_PIECES), ../$(piece)/$(ARCH)/$(piece).rel) \
16     $(foreach piece, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel)
17LIB=$(ARCH)/libbsp.a
18
19include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
20include $(RTEMS_ROOT)/make/lib.cfg
21
22#
23# (OPTIONAL) Add local stuff here using +=
24#
25
26DEFINES  +=
27CPPFLAGS +=
28CFLAGS   +=
29
30LD_PATHS  +=
31LD_LIBS   +=
32LDFLAGS   +=
33
34#
35# Add your list of files to delete here.  The config files
36#  already know how to delete some stuff, so you may want
37#  to just run 'make clean' first to see what gets missed.
38#  'make clobber' already includes 'make clean'
39#
40
41CLEAN_ADDITIONS +=
42CLOBBER_ADDITIONS +=
43
44$(LIB): ${OBJS}
45        $(make-library)
46
47all:    ${ARCH} $(SRCS) $(LIB)
48        $(INSTALL_VARIANT) -m 644 $(LIB) ${PROJECT_RELEASE}/lib
49# we create here a directory specific to the PC386 BSP to store the BootImage
50# files so they can be easily found
51        mkdir -p ${PROJECT_RELEASE}/BootImgs
Note: See TracBrowser for help on using the repository browser.