source: rtems/c/src/lib/include/Makefile.in @ 334b01f1

4.104.114.84.95
Last change on this file since 334b01f1 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: 986 bytes
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8VPATH=@srcdir@
9
10H_PIECES=console clockdrv iosupp ringbuf \
11   spurious timerdrv vmeintr z8036 z8530 z8536
12H_FILES=$(H_PIECES:%=$(srcdir)/%.h)
13
14KA9Q_H_PIECES= arp asy ax25 ax25mail bootp cmdparse commands config \
15  daemon dialer domain enet ftp ftpcli global hardware icmp iface \
16  internet ip kiss lapb lzw mailbox mbuf netuser nospc nr4 nr4mail \
17  nrs ping pktdrvr ppp proc rip rtems_ka9q sb session slhc slip smtp \
18  sockaddr socket tcp telnet tftp timer tipmail trace udp usock
19KA9Q_H_FILES=$(KA9Q_H_PIECES:%=$(srcdir)/ka9q/%.h)
20
21SYS_H_FILES=
22
23SRCS=$(H_FILES) $(SYS_H_FILES)
24
25include $(RTEMS_CUSTOM)
26include $(PROJECT_ROOT)/make/leaf.cfg
27
28CLEAN_ADDITIONS +=
29CLOBBER_ADDITIONS +=
30
31all:    $(SRCS)
32        $(INSTALL) -m 444 $(H_FILES) ${PROJECT_RELEASE}/include
33        $(INSTALL) -m 444 $(SYS_H_FILES) ${PROJECT_RELEASE}/include/sys
34ifeq ($(HAS_KA9Q),yes)
35        $(INSTALL) -m 444 $(KA9Q_H_FILES) ${PROJECT_RELEASE}/include/ka9q
36endif
Note: See TracBrowser for help on using the repository browser.