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

4.104.114.84.95
Last change on this file since c0438add was c0438add, checked in by Joel Sherrill <joel.sherrill@…>, on 02/18/99 at 21:09:25

Renamed network to wd8003.

  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[7150f00f]1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
[674c900]7VPATH = @srcdir@
[5c3511e]8RTEMS_ROOT = @top_srcdir@
[674c900]9PROJECT_ROOT = @PROJECT_ROOT@
[7150f00f]10
[8548fe0]11INSTALL = @INSTALL@
12
[d9d75fc]13# We only build the Network library if HAS_NETWORKING was defined
[c0438add]14NETWORK_yes_V = dec21140 ne2000 wd8003
[d9d75fc]15NETWORK = $(NETWORK_$(HAS_NETWORKING)_V)
[2d7d605]16
[0ebbf66]17BSP_PIECES=startup clock console timer $(NETWORK)
[7150f00f]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, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel)
23LIB=$(ARCH)/libbsp.a
24
[5c3511e]25include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
[cb5bfe4]26include $(RTEMS_ROOT)/make/lib.cfg
[7150f00f]27
28#
29# (OPTIONAL) Add local stuff here using +=
30#
31
32DEFINES  +=
33CPPFLAGS +=
34CFLAGS   +=
35
36LD_PATHS  +=
37LD_LIBS   +=
38LDFLAGS   +=
39
40#
41# Add your list of files to delete here.  The config files
42#  already know how to delete some stuff, so you may want
43#  to just run 'make clean' first to see what gets missed.
44#  'make clobber' already includes 'make clean'
45#
46
47CLEAN_ADDITIONS +=
48CLOBBER_ADDITIONS +=
49
50$(LIB): ${OBJS}
51        $(make-library)
52
53all:    ${ARCH} $(SRCS) $(LIB)
54        $(INSTALL_VARIANT) -m 644 $(LIB) ${PROJECT_RELEASE}/lib
[96d56b3]55# we create here a directory specific to the PC386 BSP to store the BootImage
56# files so they can be easily found
57        mkdir -p ${PROJECT_RELEASE}/BootImgs
[dbaf51a]58
59
60
[2d7d605]61
Note: See TracBrowser for help on using the repository browser.