source: rtems/c/src/lib/libbsp/m68k/gen68360/wrapup/Makefile.in @ ecc4594

4.104.114.84.95
Last change on this file since ecc4594 was e2d79559, checked in by Joel Sherrill <joel.sherrill@…>, on 04/09/97 at 14:05:50

Added ka9q tcpip stack and network driver for the gen68360. This effort
was done based on the 3.6.0 release and had to be autoconf'ed locally.
It is turned on is the bsp enables it and it is not explicitly disabled
via the configure option --disable-tcpip. As many warnings as possible
were removed locally after the code was merged. Only the gen68360
and mvme136 bsps were compiled this way.

The ka9q port and network driver were submitted by Eric Norum
(eric@…).

The network demo programs are not included in the tree at this point.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8VPATH=@srcdir@
9
10# We only build the ka9q device driver if HAS_KA9Q was defined
11LIBKA9Q_yes_V = network
12LIBKA9Q = $(LIBKA9Q_$(HAS_KA9Q)_V)
13
14BSP_PIECES=startup clock console $(LIBKA9Q) timer
15CPU_PIECES=
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, $(CPU_PIECES), \
21         ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/$(piece).rel) \
22     $(foreach piece, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel)
23LIB=$(ARCH)/libbsp.a
24
25include $(RTEMS_CUSTOM)
26include $(PROJECT_ROOT)/make/lib.cfg
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
55
Note: See TracBrowser for help on using the repository browser.