source: rtems/c/src/lib/include/Makefile.in @ 0074691a

4.104.114.84.95
Last change on this file since 0074691a was 91333c2, checked in by Joel Sherrill <joel.sherrill@…>, on 07/31/97 at 22:04:17

Merged very large and much appreciated patch from Chris Johns
<cjohns@…>. This patch includes the ods68302 bsp,
the RTEMS++ class library, and the rtems++ test.

  • Property mode set to 100644
File size: 1.3 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 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
21RTEMSCPLUSPLUS_H_PIECES= rtemsEvent rtemsInterrupt rtemsMessageQueue \
22  rtemsSemaphore rtemsStatusCode rtemsTask rtemsTaskMode rtemsTimer
23RTEMSCPLUSPLUS_H_FILES=$(RTEMSCPLUSPLUS_H_PIECES:%=$(srcdir)/rtems++/%.h)
24
25SYS_H_FILES=
26
27SRCS=$(H_FILES) $(SYS_H_FILES)
28
29include $(RTEMS_CUSTOM)
30include $(PROJECT_ROOT)/make/leaf.cfg
31
32CLEAN_ADDITIONS +=
33CLOBBER_ADDITIONS +=
34
35all:    $(SRCS)
36        $(INSTALL) -m 444 $(H_FILES) ${PROJECT_RELEASE}/include
37        $(INSTALL) -m 444 $(SYS_H_FILES) ${PROJECT_RELEASE}/include/sys
38ifeq ($(HAS_KA9Q),yes)
39        $(INSTALL) -m 444 $(KA9Q_H_FILES) ${PROJECT_RELEASE}/include/ka9q
40endif
41ifeq ($(HAS_CPLUSPLUS),yes)
42        $(INSTALL) -m 444 $(RTEMSCPLUSPLUS_H_FILES) ${PROJECT_RELEASE}/include/rtems++
43endif
Note: See TracBrowser for help on using the repository browser.