2002-01-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* ChangeLog: New.
	* configure.ac: New.
	* Makefile.am: New.
	* rtems/*: Copied from c/src/exec/rtems/optman.
	* sapi/*: Copied from c/src/exec/sapi/optman.
This commit is contained in:
Joel Sherrill
2002-01-04 17:58:43 +00:00
parent 8217c40656
commit b91f03384b
6 changed files with 67 additions and 1 deletions

7
c/src/optman/ChangeLog Normal file
View File

@@ -0,0 +1,7 @@
2002-01-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* ChangeLog: New.
* configure.ac: New.
* Makefile.am: New.
* rtems/*: Copied from c/src/exec/rtems/optman.
* sapi/*: Copied from c/src/exec/sapi/optman.

13
c/src/optman/Makefile.am Normal file
View File

@@ -0,0 +1,13 @@
##
## $Id$
##
AUTOMAKE_OPTIONS = foreign 1.5
ACLOCAL_AMFLAGS = -I ../../../aclocal
include $(top_srcdir)/../../../automake/multilib.am
SUBDIRS = rtems sapi
include $(top_srcdir)/../../../automake/subdirs.am
include $(top_srcdir)/../../../automake/local.am

42
c/src/optman/configure.ac Normal file
View File

@@ -0,0 +1,42 @@
## Process this file with autoconf to produce a configure script.
##
## $Id$
AC_PREREQ(2.52)
AC_INIT
AC_CONFIG_SRCDIR([rtems])
RTEMS_TOP(../../..)
AC_CONFIG_AUX_DIR(../../..)
RTEMS_CANONICAL_TARGET_CPU
AM_INIT_AUTOMAKE(rtems-c-src-optman,$RTEMS_VERSION,no)
AM_MAINTAINER_MODE
RTEMS_ENABLE_MULTILIB
RTEMS_ENABLE_MULTIPROCESSING
RTEMS_ENABLE_POSIX
RTEMS_ENABLE_ITRON
RTEMS_ENABLE_INLINES
RTEMS_ENABLE_GCC28
RTEMS_ENABLE_RTEMS_DEBUG
RTEMS_ENV_RTEMSBSP
RTEMS_CHECK_RTEMS_DEBUG
RTEMS_CHECK_CPU
RTEMS_CANONICAL_HOST
RTEMS_PROJECT_ROOT
RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
RTEMS_CANONICALIZE_TOOLS
RTEMS_CHECK_NEWLIB
# Explicitly list all Makefiles here
AC_CONFIG_FILES([Makefile
rtems/Makefile
sapi/Makefile
])
AC_OUTPUT

View File

@@ -0,0 +1,2 @@
Makefile
Makefile.in

View File

@@ -10,7 +10,7 @@ C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
PGMS = $(C_FILES:%.c=$(ARCH)/%.rel)
include $(top_srcdir)/../../../automake/multilib.am
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../automake/compile.am
include $(top_srcdir)/../../../automake/lib.am

View File

@@ -0,0 +1,2 @@
Makefile
Makefile.in