summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-09-07 13:45:03 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-09-07 13:45:03 +0000
commite1d8abbe2800defb344dcce54c401733edd1d37a (patch)
tree56e416222d2ed47222be37f868a06c93656edc72 /cpukit
parentRemoved by patch rtems-rc-19990820-6.diff.gz from (diff)
downloadrtems-e1d8abbe2800defb344dcce54c401733edd1d37a.tar.bz2
Applied patch rtems-rc-19990820-6.diff.gz from
Ralf Corsepius <corsepiu@faw.uni-ulm.de> which converted many Makefile.in's to Makefile.am's. This added a lot of files.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/Makefile.am15
-rw-r--r--cpukit/libcsupport/Makefile.am28
-rw-r--r--cpukit/libmisc/Makefile.am13
-rw-r--r--cpukit/libnetworking/Makefile.am24
-rw-r--r--cpukit/librpc/include/rpc/Makefile.am26
-rw-r--r--cpukit/posix/Makefile.am11
-rw-r--r--cpukit/posix/include/Makefile.am31
-rw-r--r--cpukit/posix/inline/Makefile.am10
-rw-r--r--cpukit/posix/macros/Makefile.am10
-rw-r--r--cpukit/rtems/Makefile.am10
-rw-r--r--cpukit/rtems/include/Makefile.am27
-rw-r--r--cpukit/rtems/inline/Makefile.am10
-rw-r--r--cpukit/rtems/macros/Makefile.am10
-rw-r--r--cpukit/sapi/Makefile.am10
-rw-r--r--cpukit/sapi/include/Makefile.am27
-rw-r--r--cpukit/sapi/inline/Makefile.am10
-rw-r--r--cpukit/sapi/macros/Makefile.am10
-rw-r--r--cpukit/score/Makefile.am10
-rw-r--r--cpukit/score/include/Makefile.am10
-rw-r--r--cpukit/score/inline/Makefile.am10
-rw-r--r--cpukit/score/macros/Makefile.am12
-rw-r--r--cpukit/wrapup/Makefile.am14
22 files changed, 338 insertions, 0 deletions
diff --git a/cpukit/Makefile.am b/cpukit/Makefile.am
new file mode 100644
index 0000000000..1015b3a4d0
--- /dev/null
+++ b/cpukit/Makefile.am
@@ -0,0 +1,15 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
+
+if HAS_POSIX
+POSIX_SUBDIRS = posix
+endif
+
+SUBDIRS = score rtems $(POSIX_SUBDIRS) sapi wrapup
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/cpukit/libcsupport/Makefile.am b/cpukit/libcsupport/Makefile.am
new file mode 100644
index 0000000000..ad2672815c
--- /dev/null
+++ b/cpukit/libcsupport/Makefile.am
@@ -0,0 +1,28 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
+
+if HAS_NETWORKING
+## We only build the networking and the rpc library
+## if HAS_NETWORKING was defined
+LIBNETWORKING = libnetworking
+LIBRPC = librpc
+
+if HAS_RDBG
+LIBRDBG = librdbg
+endif
+
+endif
+
+if HAS_LIBCHIP
+LIBCHIP = libchip
+endif
+
+SUBDIRS = start include libmisc libc $(LIBNETWORKING) libcpu libbsp \
+ $(LIBRPC) $(LIBRDBG) $(LIBCHIP) $(LIBHWAPI) wrapup
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/cpukit/libmisc/Makefile.am b/cpukit/libmisc/Makefile.am
new file mode 100644
index 0000000000..6eed23e41f
--- /dev/null
+++ b/cpukit/libmisc/Makefile.am
@@ -0,0 +1,13 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
+
+SUBDIRS = assoc dumpbuf error stackchk monitor cpuuse rtmonuse untar wrapup
+
+EXTRA_DIST = README
+
+include $(top_srcdir)/../../../../automake/subdirs.am
+include $(top_srcdir)/../../../../automake/local.am
diff --git a/cpukit/libnetworking/Makefile.am b/cpukit/libnetworking/Makefile.am
new file mode 100644
index 0000000000..762323eeea
--- /dev/null
+++ b/cpukit/libnetworking/Makefile.am
@@ -0,0 +1,24 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
+
+SUBDIRS = include kern lib libc net netinet nfs rtems rtems_servers wrapup
+
+EXTRA_DIST = \
+CHANGELOG \
+README \
+bpfilter.h \
+loop.h \
+netdb.h \
+opt_ipfw.h \
+opt_mrouting.h \
+opt_tcpdebug.h \
+poll.h \
+resolv.h \
+syslog.h
+
+include $(top_srcdir)/../../../../automake/subdirs.am
+include $(top_srcdir)/../../../../automake/local.am
diff --git a/cpukit/librpc/include/rpc/Makefile.am b/cpukit/librpc/include/rpc/Makefile.am
new file mode 100644
index 0000000000..2b89842fd7
--- /dev/null
+++ b/cpukit/librpc/include/rpc/Makefile.am
@@ -0,0 +1,26 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+if HAS_NETWORKING
+H_PIECES = auth.h rpc.h svc.h types.h clnt.h rpc_msg.h svc_auth.h xdr.h
+
+noinst_HEADERS = $(H_PIECES)
+
+TMPINSTALL_FILES = \
+$(PROJECT_INCLUDE)/rpc \
+$(noinst_HEADERS:%=$(PROJECT_INCLUDE)/rpc/%)
+
+$(PROJECT_INCLUDE)/rpc:
+ @$(mkinstalldirs) $@
+$(PROJECT_INCLUDE)/rpc/%.h: %.h
+ $(INSTALL_DATA) $< $@
+endif
+
+all-am: $(TMPINSTALL_FILES)
+debug-am: $(TMPINSTALL_FILES)
+profile-am: $(TMPINSTALL_FILES)
+
+include $(top_srcdir)/../../../automake/local.am
diff --git a/cpukit/posix/Makefile.am b/cpukit/posix/Makefile.am
new file mode 100644
index 0000000000..344150db43
--- /dev/null
+++ b/cpukit/posix/Makefile.am
@@ -0,0 +1,11 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
+
+SUBDIRS = include inline macros optman src
+
+include $(top_srcdir)/../../../../automake/subdirs.am
+include $(top_srcdir)/../../../../automake/local.am
diff --git a/cpukit/posix/include/Makefile.am b/cpukit/posix/include/Makefile.am
new file mode 100644
index 0000000000..e56df2781a
--- /dev/null
+++ b/cpukit/posix/include/Makefile.am
@@ -0,0 +1,31 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+# RTEMS unistd.h needs to be checked against newlib's and removed
+#noinst_HEADERS= devctl.h intr.h
+H_PIECES = pthread.h sched.h aio.h mqueue.h semaphore.h
+
+noinst_HEADERS = $(H_PIECES)
+
+TMPINSTALL_FILES = \
+$(PROJECT_INCLUDE) \
+$(noinst_HEADERS:%=$(PROJECT_INCLUDE)/%)
+
+$(PROJECT_INCLUDE):
+ @$(mkinstalldirs) $@
+$(PROJECT_INCLUDE)/%.h: %.h
+ $(INSTALL_DATA) $< $@
+
+all-am: $(TMPINSTALL_FILES)
+debug-am: $(TMPINSTALL_FILES)
+profile-am: $(TMPINSTALL_FILES)
+
+SUBDIRS = rtems sys
+
+EXTRA_DIST = intr.h devctl.h
+
+include $(top_srcdir)/../../../../automake/subdirs.am
+include $(top_srcdir)/../../../../automake/local.am
diff --git a/cpukit/posix/inline/Makefile.am b/cpukit/posix/inline/Makefile.am
new file mode 100644
index 0000000000..f0a5d52bfa
--- /dev/null
+++ b/cpukit/posix/inline/Makefile.am
@@ -0,0 +1,10 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+SUBDIRS = rtems
+
+include $(top_srcdir)/../../../../automake/subdirs.am
+include $(top_srcdir)/../../../../automake/local.am
diff --git a/cpukit/posix/macros/Makefile.am b/cpukit/posix/macros/Makefile.am
new file mode 100644
index 0000000000..f0a5d52bfa
--- /dev/null
+++ b/cpukit/posix/macros/Makefile.am
@@ -0,0 +1,10 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+SUBDIRS = rtems
+
+include $(top_srcdir)/../../../../automake/subdirs.am
+include $(top_srcdir)/../../../../automake/local.am
diff --git a/cpukit/rtems/Makefile.am b/cpukit/rtems/Makefile.am
new file mode 100644
index 0000000000..514704c3f0
--- /dev/null
+++ b/cpukit/rtems/Makefile.am
@@ -0,0 +1,10 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+SUBDIRS = include inline macros optman src
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/cpukit/rtems/include/Makefile.am b/cpukit/rtems/include/Makefile.am
new file mode 100644
index 0000000000..c95fb45d7c
--- /dev/null
+++ b/cpukit/rtems/include/Makefile.am
@@ -0,0 +1,27 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+H_PIECES = rtems.h
+
+noinst_HEADERS = $(H_PIECES)
+
+TMPINSTALL_FILES = \
+$(PROJECT_INCLUDE) \
+$(noinst_HEADERS:%=$(PROJECT_INCLUDE)/%)
+
+$(PROJECT_INCLUDE):
+ @$(mkinstalldirs) $@
+$(PROJECT_INCLUDE)/%.h: %.h
+ $(INSTALL_DATA) $< $@
+
+all-am: $(TMPINSTALL_FILES)
+debug-am: $(TMPINSTALL_FILES)
+profile-am: $(TMPINSTALL_FILES)
+
+SUBDIRS = rtems
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/cpukit/rtems/inline/Makefile.am b/cpukit/rtems/inline/Makefile.am
new file mode 100644
index 0000000000..2bbc7201fa
--- /dev/null
+++ b/cpukit/rtems/inline/Makefile.am
@@ -0,0 +1,10 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+SUBDIRS = rtems
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/cpukit/rtems/macros/Makefile.am b/cpukit/rtems/macros/Makefile.am
new file mode 100644
index 0000000000..2bbc7201fa
--- /dev/null
+++ b/cpukit/rtems/macros/Makefile.am
@@ -0,0 +1,10 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+SUBDIRS = rtems
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/cpukit/sapi/Makefile.am b/cpukit/sapi/Makefile.am
new file mode 100644
index 0000000000..514704c3f0
--- /dev/null
+++ b/cpukit/sapi/Makefile.am
@@ -0,0 +1,10 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+SUBDIRS = include inline macros optman src
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/cpukit/sapi/include/Makefile.am b/cpukit/sapi/include/Makefile.am
new file mode 100644
index 0000000000..38d8c97eb6
--- /dev/null
+++ b/cpukit/sapi/include/Makefile.am
@@ -0,0 +1,27 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+H_PIECES = confdefs.h
+
+noinst_HEADERS = $(H_PIECES)
+
+TMPINSTALL_FILES = \
+$(PROJECT_INCLUDE) \
+$(noinst_HEADERS:%=$(PROJECT_INCLUDE)/%)
+
+$(PROJECT_INCLUDE):
+ @$(mkinstalldirs) $@
+$(PROJECT_INCLUDE)/%.h: %.h
+ $(INSTALL_DATA) $< $@
+
+all-am: $(TMPINSTALL_FILES)
+debug-am: $(TMPINSTALL_FILES)
+profile-am: $(TMPINSTALL_FILES)
+
+SUBDIRS = rtems
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/cpukit/sapi/inline/Makefile.am b/cpukit/sapi/inline/Makefile.am
new file mode 100644
index 0000000000..2bbc7201fa
--- /dev/null
+++ b/cpukit/sapi/inline/Makefile.am
@@ -0,0 +1,10 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+SUBDIRS = rtems
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/cpukit/sapi/macros/Makefile.am b/cpukit/sapi/macros/Makefile.am
new file mode 100644
index 0000000000..2bbc7201fa
--- /dev/null
+++ b/cpukit/sapi/macros/Makefile.am
@@ -0,0 +1,10 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+SUBDIRS = rtems
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/cpukit/score/Makefile.am b/cpukit/score/Makefile.am
new file mode 100644
index 0000000000..f20dd9bdb7
--- /dev/null
+++ b/cpukit/score/Makefile.am
@@ -0,0 +1,10 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+SUBDIRS = include inline macros cpu src
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/cpukit/score/include/Makefile.am b/cpukit/score/include/Makefile.am
new file mode 100644
index 0000000000..2bbc7201fa
--- /dev/null
+++ b/cpukit/score/include/Makefile.am
@@ -0,0 +1,10 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+SUBDIRS = rtems
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/cpukit/score/inline/Makefile.am b/cpukit/score/inline/Makefile.am
new file mode 100644
index 0000000000..2bbc7201fa
--- /dev/null
+++ b/cpukit/score/inline/Makefile.am
@@ -0,0 +1,10 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+SUBDIRS = rtems
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/cpukit/score/macros/Makefile.am b/cpukit/score/macros/Makefile.am
new file mode 100644
index 0000000000..819d2a246b
--- /dev/null
+++ b/cpukit/score/macros/Makefile.am
@@ -0,0 +1,12 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+SUBDIRS = rtems
+
+EXTRA_DIST = README
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/cpukit/wrapup/Makefile.am b/cpukit/wrapup/Makefile.am
new file mode 100644
index 0000000000..4d762d62b8
--- /dev/null
+++ b/cpukit/wrapup/Makefile.am
@@ -0,0 +1,14 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign 1.4
+
+if HAS_POSIX
+POSIX_DIRS = posix
+endif
+
+SUBDIRS = rtems $(POSIX_DIRS)
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am