source: rtems/c/src/lib/include/Makefile.in @ 98e4ebf5

4.104.114.84.95
Last change on this file since 98e4ebf5 was a2016b99, checked in by Joel Sherrill <joel.sherrill@…>, on 10/08/97 at 14:42:08

Removed include directory at "build" point and the link of this directory
to lib/include.

Went to using a PROJECT_INCLUDE variable.

  • Property mode set to 100644
File size: 1.7 KB
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
12H_FILES=$(H_PIECES:%=$(srcdir)/%.h)
13
14SYS_H_PIECES=termios
15SYS_H_FILES=$(SYS_H_PIECES:%=$(srcdir)/sys/%.h)
16
17KA9Q_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 SyslogDaemon syslog socket tcp telnet tftp timer tipmail \
22  trace udp usock
23KA9Q_H_FILES=$(KA9Q_H_PIECES:%=$(srcdir)/ka9q/%.h)
24
25MOTOROLA_H_PIECES=mc68230 mc68681
26MOTOROLA_H_FILES=$(MOTOROLA_H_PIECES:%=$(srcdir)/motorola/%.h)
27
28ZILOG_H_PIECES=z8036 z8530 z8536
29ZILOG_H_FILES=$(ZILOG_H_PIECES:%=$(srcdir)/zilog/%.h)
30
31RTEMSCPLUSPLUS_H_PIECES= rtemsEvent rtemsInterrupt rtemsMessageQueue \
32  rtemsSemaphore rtemsStatusCode rtemsTask rtemsTaskMode rtemsTimer
33RTEMSCPLUSPLUS_H_FILES=$(RTEMSCPLUSPLUS_H_PIECES:%=$(srcdir)/rtems++/%.h)
34
35SRCS=$(H_FILES) $(SYS_H_FILES) \
36     $(KA9Q_H_FILES) $(MOTOROLA_H_FILES) $(RTEMSCPLUSPLUS_H_FILES)
37
38include $(RTEMS_CUSTOM)
39include $(PROJECT_ROOT)/make/leaf.cfg
40CLEAN_ADDITIONS +=
41CLOBBER_ADDITIONS +=
42
43all:    $(SRCS)
44        $(INSTALL) -m 444 $(H_FILES) $(PROJECT_INCLUDE)
45        $(INSTALL) -m 444 $(SYS_H_FILES) $(PROJECT_INCLUDE)/sys
46        $(INSTALL) -m 444 $(MOTOROLA_H_FILES) \
47            $(PROJECT_INCLUDE)/motorola
48        $(INSTALL) -m 444 $(ZILOG_H_FILES) $(PROJECT_INCLUDE)/zilog
49ifeq ($(HAS_KA9Q),yes)
50        $(INSTALL) -m 444 $(KA9Q_H_FILES) $(PROJECT_INCLUDE)/ka9q
51endif
52ifeq ($(HAS_CPLUSPLUS),yes)
53        $(INSTALL) -m 444 $(RTEMSCPLUSPLUS_H_FILES) $(PROJECT_INCLUDE)/rtems++
54endif
Note: See TracBrowser for help on using the repository browser.