summaryrefslogtreecommitdiffstats
path: root/c/src/lib/include
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-08-04 21:44:05 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-08-04 21:44:05 +0000
commit9b02488484ffb2275eb95a2cde5381a0e6a2ccf9 (patch)
treeb7ce0e829562f7d3c1f1de921dd50d2f9c6b3fc8 /c/src/lib/include
parentAdded GNAT configuration parameters. (diff)
downloadrtems-9b02488484ffb2275eb95a2cde5381a0e6a2ccf9.tar.bz2
Moved files into the zilog and motorola subdirectories.
Diffstat (limited to 'c/src/lib/include')
-rw-r--r--c/src/lib/include/Makefile.in15
1 files changed, 12 insertions, 3 deletions
diff --git a/c/src/lib/include/Makefile.in b/c/src/lib/include/Makefile.in
index bb35475c02..4d92d09b73 100644
--- a/c/src/lib/include/Makefile.in
+++ b/c/src/lib/include/Makefile.in
@@ -8,7 +8,7 @@ top_srcdir = @top_srcdir@
VPATH=@srcdir@
H_PIECES=console clockdrv iosupp ringbuf \
- spurious timerdrv vmeintr z8036 z8530 z8536
+ spurious timerdrv vmeintr
H_FILES=$(H_PIECES:%=$(srcdir)/%.h)
SYS_H_PIECES=termios
@@ -21,21 +21,30 @@ KA9Q_H_PIECES= arp asy ax25 ax25mail bootp cmdparse commands config \
sockaddr socket tcp telnet tftp timer tipmail trace udp usock
KA9Q_H_FILES=$(KA9Q_H_PIECES:%=$(srcdir)/ka9q/%.h)
+MOTOROLA_H_PIECES=mc68230 mc68681
+MOTOROLA_H_FILES=$(MOTO_H_PIECES:%=$(srcdir)/motorola/%.h)
+
+ZILOG_H_PIECES=z8036 z8530 z8536
+ZILOG_H_FILES=$(ZILOG_H_PIECES:%=$(srcdir)/zilog/%.h)
+
RTEMSCPLUSPLUS_H_PIECES= rtemsEvent rtemsInterrupt rtemsMessageQueue \
rtemsSemaphore rtemsStatusCode rtemsTask rtemsTaskMode rtemsTimer
RTEMSCPLUSPLUS_H_FILES=$(RTEMSCPLUSPLUS_H_PIECES:%=$(srcdir)/rtems++/%.h)
-SRCS=$(H_FILES) $(SYS_H_FILES) $(KA9Q_H_FILES) $(RTEMSCPLUSPLUS_H_FILES)
+SRCS=$(H_FILES) $(SYS_H_FILES) \
+ $(KA9Q_H_FILES) $(MOTOROLA_H_FILES) $(RTEMSCPLUSPLUS_H_FILES)
include $(RTEMS_CUSTOM)
include $(PROJECT_ROOT)/make/leaf.cfg
-
CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS +=
all: $(SRCS)
$(INSTALL) -m 444 $(H_FILES) ${PROJECT_RELEASE}/include
$(INSTALL) -m 444 $(SYS_H_FILES) ${PROJECT_RELEASE}/include/sys
+ $(INSTALL) -m 444 $(MOTOROLA_H_FILES) \
+ ${PROJECT_RELEASE}/include/motorola
+ $(INSTALL) -m 444 $(ZILOG_H_FILES) ${PROJECT_RELEASE}/include/zilog
ifeq ($(HAS_KA9Q),yes)
$(INSTALL) -m 444 $(KA9Q_H_FILES) ${PROJECT_RELEASE}/include/ka9q
endif