summaryrefslogtreecommitdiffstats
path: root/c/src/exec/wrapup/posix
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-01-04 17:57:28 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-01-04 17:57:28 +0000
commit8217c40656e00102bb2f96c4b36edd47c0aadcfc (patch)
treead2e9a485187d3805489eac0735b88d8b219e25d /c/src/exec/wrapup/posix
parent2001-12-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-8217c40656e00102bb2f96c4b36edd47c0aadcfc.tar.bz2
2001-12-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Use AS_IF instead of if/then/else. Add AC_DEFINE_UNQUOTED(RTEMS_UNIX) for RTEMS_CPU==unix. Add AC_DEFINE_UNQUOTED(RTEMS_UNIXLIB) for RTEMS_CPU==unix. Add include/Makefile to CONFIG_FILES. Add AC_ENABLE_MULITLIB. Remove wrapup/rtems, wrapup/itron, wrapup/posix. Remove */optman/Makefile from CONFIG_FILES. * Makefile.am: Add include to SUBDIRS. * rtems/Makefile.am: Remove optman from SUBDIRS. * sapi/Makefile.am: Remove optman from SUBDIRS. * include/Makefile.am: New file. * include/rtems/bspIo.h: Relocated from lib/include. * include/rtems/libio_.h: Relocated from lib/include.
Diffstat (limited to 'c/src/exec/wrapup/posix')
-rw-r--r--c/src/exec/wrapup/posix/.cvsignore2
-rw-r--r--c/src/exec/wrapup/posix/Makefile.am36
2 files changed, 0 insertions, 38 deletions
diff --git a/c/src/exec/wrapup/posix/.cvsignore b/c/src/exec/wrapup/posix/.cvsignore
deleted file mode 100644
index 282522db03..0000000000
--- a/c/src/exec/wrapup/posix/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-Makefile
-Makefile.in
diff --git a/c/src/exec/wrapup/posix/Makefile.am b/c/src/exec/wrapup/posix/Makefile.am
deleted file mode 100644
index 6c763f52e2..0000000000
--- a/c/src/exec/wrapup/posix/Makefile.am
+++ /dev/null
@@ -1,36 +0,0 @@
-##
-## $Id$
-##
-
-AUTOMAKE_OPTIONS = foreign 1.4
-
-if HAS_POSIX
-LIBNAME = libposix
-LIB = $(ARCH)/$(LIBNAME).a
-endif
-
-include $(top_srcdir)/../../../automake/multilib.am
-include $(top_srcdir)/../../../automake/compile.am
-include $(top_srcdir)/../../../automake/lib.am
-
-if HAS_POSIX
-
-POSIX_OBJS = $(wildcard ../../posix/src/$(ARCH)/*.o)
-
-OBJS = $(POSIX_OBJS)
-
-$(LIB): ${OBJS}
- $(make-library)
-
-POSIX_LIB = $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/$(LIBNAME)$(LIB_VARIANT).a
-
-$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/$(LIBNAME)$(LIB_VARIANT).a: $(LIB)
- $(INSTALL_DATA) $< $@
-
-all-local: ${ARCH} $(LIB) $(TMPINSTALL_FILES)
-
-endif
-
-TMPINSTALL_FILES += $(POSIX_LIB)
-
-include $(top_srcdir)/../../../automake/local.am