4.104.114.84.95
Last change
on this file since 9deb5b8b was
9deb5b8b,
checked in by Joel Sherrill <joel.sherrill@…>, on 08/01/97 at 18:12:11
|
Katsutoshi Shibuya (shibuya@…)of BU-Denken Co., Ltd.
(Sapporo, Japan) submitted the extended console driver for the
MVME162LX BSP and the POSIX tcsetattr() and tcgetattr() routines.
This device driver supports four serial ports, cooked IO, and
provides a portable base for Zilog 8530 based console drivers.
|
-
Property mode set to
100644
|
File size:
1.4 KB
|
Line | |
---|
1 | # |
---|
2 | # $Id$ |
---|
3 | # |
---|
4 | |
---|
5 | @SET_MAKE@ |
---|
6 | srcdir = @srcdir@ |
---|
7 | top_srcdir = @top_srcdir@ |
---|
8 | VPATH=@srcdir@ |
---|
9 | |
---|
10 | H_PIECES=console clockdrv iosupp ringbuf \ |
---|
11 | spurious timerdrv vmeintr z8036 z8530 z8536 |
---|
12 | H_FILES=$(H_PIECES:%=$(srcdir)/%.h) |
---|
13 | |
---|
14 | SYS_H_PIECES=termios |
---|
15 | SYS_H_FILES=$(SYS_H_PIECES:%=$(srcdir)/sys/%.h) |
---|
16 | |
---|
17 | KA9Q_H_PIECES= arp asy ax25 ax25mail bootp cmdparse commands config \ |
---|
18 | daemon dialer domain enet ftp ftpcli global hardware icmp iface \ |
---|
19 | internet ip kiss lapb lzw mailbox mbuf netuser nospc nr4 nr4mail \ |
---|
20 | nrs ping pktdrvr ppp proc rip rtems_ka9q sb session slhc slip smtp \ |
---|
21 | sockaddr socket tcp telnet tftp timer tipmail trace udp usock |
---|
22 | KA9Q_H_FILES=$(KA9Q_H_PIECES:%=$(srcdir)/ka9q/%.h) |
---|
23 | |
---|
24 | RTEMSCPLUSPLUS_H_PIECES= rtemsEvent rtemsInterrupt rtemsMessageQueue \ |
---|
25 | rtemsSemaphore rtemsStatusCode rtemsTask rtemsTaskMode rtemsTimer |
---|
26 | RTEMSCPLUSPLUS_H_FILES=$(RTEMSCPLUSPLUS_H_PIECES:%=$(srcdir)/rtems++/%.h) |
---|
27 | |
---|
28 | SRCS=$(H_FILES) $(SYS_H_FILES) $(KA9Q_H_FILES) $(RTEMSCPLUSPLUS_H_FILES) |
---|
29 | |
---|
30 | include $(RTEMS_CUSTOM) |
---|
31 | include $(PROJECT_ROOT)/make/leaf.cfg |
---|
32 | |
---|
33 | CLEAN_ADDITIONS += |
---|
34 | CLOBBER_ADDITIONS += |
---|
35 | |
---|
36 | all: $(SRCS) |
---|
37 | $(INSTALL) -m 444 $(H_FILES) ${PROJECT_RELEASE}/include |
---|
38 | $(INSTALL) -m 444 $(SYS_H_FILES) ${PROJECT_RELEASE}/include/sys |
---|
39 | ifeq ($(HAS_KA9Q),yes) |
---|
40 | $(INSTALL) -m 444 $(KA9Q_H_FILES) ${PROJECT_RELEASE}/include/ka9q |
---|
41 | endif |
---|
42 | ifeq ($(HAS_CPLUSPLUS),yes) |
---|
43 | $(INSTALL) -m 444 $(RTEMSCPLUSPLUS_H_FILES) ${PROJECT_RELEASE}/include/rtems++ |
---|
44 | endif |
---|
Note: See
TracBrowser
for help on using the repository browser.