Changeset 5e622a9 in rtems
- Timestamp:
- 12/12/02 03:08:54 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- f7952533
- Parents:
- e5b78e2
- Location:
- cpukit/libmisc
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libmisc/ChangeLog
re5b78e2 r5e622a9 1 2002-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 Moving libmisc from rtems/c/src to rtems/cpukit. 4 5 * Makefile.am: Reflect new path. 6 * configure.ac: Reflect new path. 7 Use RTEMS_ENV_RTEMSCPU instead of RTEMS_ENV_RTEMSBSP. 8 Remove RTEMS_PROJECT_ROOT. 9 * capture/Makefile.am: Reflect new path. 10 Remove OBJS from all-local. 11 * cpuuse/Makefile.am: Ditto. 12 * devnull/Makefile.am: Ditto. 13 * dummy/Makefile.am: Ditto. 14 * dumpbuf/Makefile.am: Ditto. 15 * monitor/Makefile.am: Ditto. 16 * mw-fb/Makefile.am: Ditto. 17 * rtmonuse/Makefile.am: Ditto. 18 * serdbg/Makefile.am: Ditto. 19 * shell/Makefile.am: Ditto. 20 * stackchk/Makefile.am: Ditto. 21 * untar/Makefile.am: Ditto. 22 * wrapup/Makefile.am: Reflect new path. 23 1 24 2002-12-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 25 -
cpukit/libmisc/Makefile.am
re5b78e2 r5e622a9 3 3 ## 4 4 5 ACLOCAL_AMFLAGS = -I ../ ../../aclocal5 ACLOCAL_AMFLAGS = -I ../aclocal 6 6 7 7 SUBDIRS = capture cpuuse devnull dummy dumpbuf monitor mw-fb shell \ … … 10 10 EXTRA_DIST = README 11 11 12 include $(top_srcdir)/../ ../../automake/subdirs.am13 include $(top_srcdir)/../ ../../automake/local.am12 include $(top_srcdir)/../automake/subdirs.am 13 include $(top_srcdir)/../automake/local.am -
cpukit/libmisc/capture/Makefile.am
re5b78e2 r5e622a9 15 15 OBJS = $(C_O_FILES) 16 16 17 include $(top_srcdir)/../ ../../automake/compile.am18 include $(top_srcdir)/../ ../../automake/lib.am17 include $(top_srcdir)/../automake/compile.am 18 include $(top_srcdir)/../automake/lib.am 19 19 20 20 $(PROJECT_INCLUDE)/rtems: … … 33 33 $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%) 34 34 35 all-local: $(ARCH) $(PREINSTALL_FILES) $( OBJS) $(LIB)35 all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB) 36 36 37 37 .PRECIOUS: $(LIB) … … 39 39 EXTRA_DIST = README capture.c capture-cli.c 40 40 41 include $(top_srcdir)/../ ../../automake/local.am41 include $(top_srcdir)/../automake/local.am -
cpukit/libmisc/configure.ac
re5b78e2 r5e622a9 4 4 5 5 AC_PREREQ(2.52) 6 AC_INIT([rtems-c -src-libmisc],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])6 AC_INIT([rtems-cpukit-libmisc],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com]) 7 7 AC_CONFIG_SRCDIR([dumpbuf]) 8 RTEMS_TOP(../.. /..)9 AC_CONFIG_AUX_DIR(../.. /..)8 RTEMS_TOP(../..) 9 AC_CONFIG_AUX_DIR(../..) 10 10 11 11 RTEMS_CANONICAL_TARGET_CPU … … 16 16 RTEMS_ENABLE_BARE 17 17 18 RTEMS_ENV_RTEMS BSP18 RTEMS_ENV_RTEMSCPU 19 19 RTEMS_CHECK_CPU 20 20 RTEMS_CANONICAL_HOST 21 22 RTEMS_PROJECT_ROOT23 21 24 22 RTEMS_PROG_CC_FOR_TARGET -
cpukit/libmisc/cpuuse/Makefile.am
re5b78e2 r5e622a9 16 16 OBJS = $(C_O_FILES) 17 17 18 include $(top_srcdir)/../ ../../automake/compile.am19 include $(top_srcdir)/../ ../../automake/lib.am18 include $(top_srcdir)/../automake/compile.am 19 include $(top_srcdir)/../automake/lib.am 20 20 21 21 $(PROJECT_INCLUDE)/rtems: … … 34 34 $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%) 35 35 36 all-local: $(ARCH) $(PREINSTALL_FILES) $( OBJS) $(LIB)36 all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB) 37 37 38 38 .PRECIOUS: $(LIB) … … 40 40 EXTRA_DIST = README cpuuse.c 41 41 42 include $(top_srcdir)/../ ../../automake/local.am42 include $(top_srcdir)/../automake/local.am -
cpukit/libmisc/devnull/Makefile.am
re5b78e2 r5e622a9 16 16 OBJS = $(C_O_FILES) 17 17 18 include $(top_srcdir)/../ ../../automake/compile.am19 include $(top_srcdir)/../ ../../automake/lib.am18 include $(top_srcdir)/../automake/compile.am 19 include $(top_srcdir)/../automake/lib.am 20 20 21 21 $(PROJECT_INCLUDE)/rtems: … … 34 34 $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%) 35 35 36 all-local: $(ARCH) $(PREINSTALL_FILES) $( OBJS) $(LIB)36 all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB) 37 37 38 38 .PRECIOUS: $(LIB) … … 40 40 EXTRA_DIST = devnull.c 41 41 42 include $(top_srcdir)/../ ../../automake/local.am42 include $(top_srcdir)/../automake/local.am -
cpukit/libmisc/dummy/Makefile.am
re5b78e2 r5e622a9 12 12 OBJS = $(C_O_FILES) 13 13 14 include $(top_srcdir)/../ ../../automake/compile.am15 include $(top_srcdir)/../ ../../automake/lib.am14 include $(top_srcdir)/../automake/compile.am 15 include $(top_srcdir)/../automake/lib.am 16 16 17 17 # … … 24 24 TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/$(PGMNAME)$(LIB_VARIANT).rel 25 25 26 all-local: $(ARCH) $(PREINSTALL_FILES) $( OBJS) $(LIB)26 all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB) 27 27 28 28 .PRECIOUS: $(LIB) … … 30 30 EXTRA_DIST = README dummy.c 31 31 32 include $(top_srcdir)/../ ../../automake/local.am32 include $(top_srcdir)/../automake/local.am -
cpukit/libmisc/dumpbuf/Makefile.am
re5b78e2 r5e622a9 16 16 OBJS = $(C_O_FILES) 17 17 18 include $(top_srcdir)/../ ../../automake/compile.am19 include $(top_srcdir)/../ ../../automake/lib.am18 include $(top_srcdir)/../automake/compile.am 19 include $(top_srcdir)/../automake/lib.am 20 20 21 21 $(PROJECT_INCLUDE)/rtems: … … 34 34 $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%) 35 35 36 all-local: $(ARCH) $(PREINSTALL_FILES) $( OBJS) $(LIB)36 all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB) 37 37 38 38 .PRECIOUS: $(LIB) … … 40 40 EXTRA_DIST = dumpbuf.c 41 41 42 include $(top_srcdir)/../ ../../automake/local.am42 include $(top_srcdir)/../automake/local.am -
cpukit/libmisc/monitor/Makefile.am
re5b78e2 r5e622a9 26 26 OBJS = $(C_O_FILES) 27 27 28 include $(top_srcdir)/../ ../../automake/compile.am29 include $(top_srcdir)/../ ../../automake/lib.am28 include $(top_srcdir)/../automake/compile.am 29 include $(top_srcdir)/../automake/lib.am 30 30 31 31 $(PROJECT_INCLUDE)/rtems: … … 44 44 $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%) 45 45 46 all-local: $(ARCH) $(PREINSTALL_FILES) $( OBJS) $(LIB)46 all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB) 47 47 48 48 .PRECIOUS: $(LIB) … … 53 53 mon-task.c 54 54 55 include $(top_srcdir)/../ ../../automake/local.am55 include $(top_srcdir)/../automake/local.am -
cpukit/libmisc/mw-fb/Makefile.am
re5b78e2 r5e622a9 17 17 OBJS = $(C_O_FILES) 18 18 19 include $(top_srcdir)/../ ../../automake/compile.am20 include $(top_srcdir)/../ ../../automake/lib.am19 include $(top_srcdir)/../automake/compile.am 20 include $(top_srcdir)/../automake/lib.am 21 21 22 22 $(PROJECT_INCLUDE)/rtems: … … 41 41 EXTRA_DIST = $(C_FILES) 42 42 43 include $(top_srcdir)/../ ../../automake/local.am43 include $(top_srcdir)/../automake/local.am -
cpukit/libmisc/rtmonuse/Makefile.am
re5b78e2 r5e622a9 16 16 OBJS = $(C_O_FILES) 17 17 18 include $(top_srcdir)/../ ../../automake/compile.am19 include $(top_srcdir)/../ ../../automake/lib.am18 include $(top_srcdir)/../automake/compile.am 19 include $(top_srcdir)/../automake/lib.am 20 20 21 21 $(PROJECT_INCLUDE)/rtems: … … 34 34 $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%) 35 35 36 all-local: $(ARCH) $(PREINSTALL_FILES) $( OBJS) $(LIB)36 all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB) 37 37 38 38 .PRECIOUS: $(LIB) … … 40 40 EXTRA_DIST = rtmonuse.c 41 41 42 include $(top_srcdir)/../ ../../automake/local.am42 include $(top_srcdir)/../automake/local.am -
cpukit/libmisc/serdbg/Makefile.am
re5b78e2 r5e622a9 17 17 OBJS = $(C_O_FILES) 18 18 19 include $(top_srcdir)/../ ../../automake/compile.am20 include $(top_srcdir)/../ ../../automake/lib.am19 include $(top_srcdir)/../automake/compile.am 20 include $(top_srcdir)/../automake/lib.am 21 21 22 22 $(PROJECT_INCLUDE): … … 35 35 $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) 36 36 37 all-local: $(ARCH) $(PREINSTALL_FILES) $( OBJS) $(LIB)37 all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB) 38 38 39 39 .PRECIOUS: $(LIB) … … 42 42 termios_printk.c termios_printk.h termios_printk_cnf.h 43 43 44 include $(top_srcdir)/../ ../../automake/local.am44 include $(top_srcdir)/../automake/local.am -
cpukit/libmisc/shell/Makefile.am
re5b78e2 r5e622a9 18 18 OBJS = $(C_O_FILES) 19 19 20 include $(top_srcdir)/../ ../../automake/compile.am21 include $(top_srcdir)/../ ../../automake/lib.am20 include $(top_srcdir)/../automake/compile.am 21 include $(top_srcdir)/../automake/lib.am 22 22 23 23 $(PROJECT_INCLUDE)/rtems: … … 37 37 38 38 if RTEMS_LIBSHELL 39 all-local: $(ARCH) $(PREINSTALL_FILES) $( OBJS) $(LIB)39 all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB) 40 40 endif 41 41 … … 44 44 EXTRA_DIST = README shell.c cmds.c shell.h 45 45 46 include $(top_srcdir)/../ ../../automake/local.am46 include $(top_srcdir)/../automake/local.am -
cpukit/libmisc/stackchk/Makefile.am
re5b78e2 r5e622a9 17 17 OBJS = $(C_O_FILES) 18 18 19 include $(top_srcdir)/../ ../../automake/compile.am20 include $(top_srcdir)/../ ../../automake/lib.am19 include $(top_srcdir)/../automake/compile.am 20 include $(top_srcdir)/../automake/lib.am 21 21 22 22 $(PROJECT_INCLUDE)/rtems: … … 35 35 $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%) 36 36 37 all-local: $(ARCH) $(PREINSTALL_FILES) $( OBJS) $(LIB)37 all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB) 38 38 39 39 .PRECIOUS: $(LIB) … … 41 41 EXTRA_DIST = README check.c 42 42 43 include $(top_srcdir)/../ ../../automake/local.am43 include $(top_srcdir)/../automake/local.am -
cpukit/libmisc/untar/Makefile.am
re5b78e2 r5e622a9 16 16 OBJS = $(C_O_FILES) 17 17 18 include $(top_srcdir)/../ ../../automake/compile.am19 include $(top_srcdir)/../ ../../automake/lib.am18 include $(top_srcdir)/../automake/compile.am 19 include $(top_srcdir)/../automake/lib.am 20 20 21 21 $(PROJECT_INCLUDE)/rtems: … … 34 34 $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%) 35 35 36 all-local: $(ARCH) $(PREINSTALL_FILES) $( OBJS) $(LIB)36 all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB) 37 37 38 38 .PRECIOUS: $(LIB) … … 40 40 EXTRA_DIST = README untar.c 41 41 42 include $(top_srcdir)/../ ../../automake/local.am42 include $(top_srcdir)/../automake/local.am -
cpukit/libmisc/wrapup/Makefile.am
re5b78e2 r5e622a9 5 5 LIB = $(ARCH)/libmisc.a 6 6 7 include $(top_srcdir)/../ ../../automake/compile.am8 include $(top_srcdir)/../ ../../automake/lib.am7 include $(top_srcdir)/../automake/compile.am 8 include $(top_srcdir)/../automake/lib.am 9 9 10 10 ## XXX temporarily remove this from the list because it causes a … … 37 37 all-local: $(ARCH) $(LIB) 38 38 39 include $(top_srcdir)/../ ../../automake/local.am39 include $(top_srcdir)/../automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.