source: rtems/c/src/wrapup/Makefile.in @ 18e5d86

4.104.114.84.95
Last change on this file since 18e5d86 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: 873 bytes
Line 
1#
2#  $Id$
3#
4#  build and install "glommed" librtemsall.a
5#
6
7@SET_MAKE@
8srcdir = @srcdir@
9top_srcdir = @top_srcdir@
10VPATH=@srcdir@
11
12include $(RTEMS_CUSTOM)
13include $(PROJECT_ROOT)/make/lib.cfg
14 
15LIB=$(PROJECT_HOME)/lib/librtemsall.a
16 
17SRCS=$(wildcard $(PROJECT_HOME)/lib/libbsp$(LIB_VARIANT).a) \
18     $(PROJECT_HOME)/lib/librtems$(LIB_VARIANT).a \
19     $(wildcard $(PROJECT_HOME)/lib/libposix$(LIB_VARIANT).a) \
20     $(wildcard $(PROJECT_HOME)/lib/libka9q$(LIB_VARIANT).a) \
21     $(PROJECT_HOME)/lib/libcsupport$(LIB_VARIANT).a \
22     $(wildcard $(PROJECT_HOME)/lib/rtems-ctor$(LIB_VARIANT).o) \
23     $(wildcard $(PROJECT_HOME)/lib/libno-ctor$(LIB_VARIANT).a)
24 
25CLEAN_ADDITIONS +=
26CLOBBER_ADDITIONS +=
27 
28all:    $(ARCH) $(LIB)
29 
30$(LIB):  $(SRCS)
31        $(PROJECT_RELEASE)/build-tools/rtems-glom \
32          -d $(PROJECT_HOME)/lib -v -V "$(LIB_VARIANT)" -a $(AR)
33 
34install:  all
35
Note: See TracBrowser for help on using the repository browser.