source: rtems/c/src/lib/libbsp/i386/pc386/wrapup/Makefile.in @ 28e7d7fa

4.104.114.84.95
Last change on this file since 28e7d7fa was 28e7d7fa, checked in by Joel Sherrill <joel.sherrill@…>, on 08/20/98 at 22:04:22

Patches from Eric Norum

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