Changeset 5e622a9 in rtems


Ignore:
Timestamp:
12/12/02 03:08:54 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
f7952533
Parents:
e5b78e2
Message:

2002-12-12 Ralf Corsepius <corsepiu@…>

Moving libmisc from rtems/c/src to rtems/cpukit.

  • Makefile.am: Reflect new path.
  • configure.ac: Reflect new path. Use RTEMS_ENV_RTEMSCPU instead of RTEMS_ENV_RTEMSBSP. Remove RTEMS_PROJECT_ROOT.
  • capture/Makefile.am: Reflect new path. Remove OBJS from all-local.
  • cpuuse/Makefile.am: Ditto.
  • devnull/Makefile.am: Ditto.
  • dummy/Makefile.am: Ditto.
  • dumpbuf/Makefile.am: Ditto.
  • monitor/Makefile.am: Ditto.
  • mw-fb/Makefile.am: Ditto.
  • rtmonuse/Makefile.am: Ditto.
  • serdbg/Makefile.am: Ditto.
  • shell/Makefile.am: Ditto.
  • stackchk/Makefile.am: Ditto.
  • untar/Makefile.am: Ditto.
  • wrapup/Makefile.am: Reflect new path.
Location:
cpukit/libmisc
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • cpukit/libmisc/ChangeLog

    re5b78e2 r5e622a9  
     12002-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
    1242002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    225
  • cpukit/libmisc/Makefile.am

    re5b78e2 r5e622a9  
    33##
    44
    5 ACLOCAL_AMFLAGS = -I ../../../aclocal
     5ACLOCAL_AMFLAGS = -I ../aclocal
    66
    77SUBDIRS = capture cpuuse devnull dummy dumpbuf monitor mw-fb shell \
     
    1010EXTRA_DIST = README
    1111
    12 include $(top_srcdir)/../../../automake/subdirs.am
    13 include $(top_srcdir)/../../../automake/local.am
     12include $(top_srcdir)/../automake/subdirs.am
     13include $(top_srcdir)/../automake/local.am
  • cpukit/libmisc/capture/Makefile.am

    re5b78e2 r5e622a9  
    1515OBJS = $(C_O_FILES)
    1616
    17 include $(top_srcdir)/../../../automake/compile.am
    18 include $(top_srcdir)/../../../automake/lib.am
     17include $(top_srcdir)/../automake/compile.am
     18include $(top_srcdir)/../automake/lib.am
    1919
    2020$(PROJECT_INCLUDE)/rtems:
     
    3333    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
    3434
    35 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
     35all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
    3636
    3737.PRECIOUS: $(LIB)
     
    3939EXTRA_DIST = README capture.c capture-cli.c
    4040
    41 include $(top_srcdir)/../../../automake/local.am
     41include $(top_srcdir)/../automake/local.am
  • cpukit/libmisc/configure.ac

    re5b78e2 r5e622a9  
    44
    55AC_PREREQ(2.52)
    6 AC_INIT([rtems-c-src-libmisc],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
     6AC_INIT([rtems-cpukit-libmisc],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
    77AC_CONFIG_SRCDIR([dumpbuf])
    8 RTEMS_TOP(../../..)
    9 AC_CONFIG_AUX_DIR(../../..)
     8RTEMS_TOP(../..)
     9AC_CONFIG_AUX_DIR(../..)
    1010
    1111RTEMS_CANONICAL_TARGET_CPU
     
    1616RTEMS_ENABLE_BARE
    1717
    18 RTEMS_ENV_RTEMSBSP
     18RTEMS_ENV_RTEMSCPU
    1919RTEMS_CHECK_CPU
    2020RTEMS_CANONICAL_HOST
    21 
    22 RTEMS_PROJECT_ROOT
    2321
    2422RTEMS_PROG_CC_FOR_TARGET
  • cpukit/libmisc/cpuuse/Makefile.am

    re5b78e2 r5e622a9  
    1616OBJS = $(C_O_FILES)
    1717
    18 include $(top_srcdir)/../../../automake/compile.am
    19 include $(top_srcdir)/../../../automake/lib.am
     18include $(top_srcdir)/../automake/compile.am
     19include $(top_srcdir)/../automake/lib.am
    2020
    2121$(PROJECT_INCLUDE)/rtems:
     
    3434    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
    3535
    36 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
     36all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
    3737
    3838.PRECIOUS: $(LIB)
     
    4040EXTRA_DIST = README cpuuse.c
    4141
    42 include $(top_srcdir)/../../../automake/local.am
     42include $(top_srcdir)/../automake/local.am
  • cpukit/libmisc/devnull/Makefile.am

    re5b78e2 r5e622a9  
    1616OBJS = $(C_O_FILES)
    1717
    18 include $(top_srcdir)/../../../automake/compile.am
    19 include $(top_srcdir)/../../../automake/lib.am
     18include $(top_srcdir)/../automake/compile.am
     19include $(top_srcdir)/../automake/lib.am
    2020
    2121$(PROJECT_INCLUDE)/rtems:
     
    3434    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
    3535
    36 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
     36all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
    3737
    3838.PRECIOUS: $(LIB)
     
    4040EXTRA_DIST = devnull.c
    4141
    42 include $(top_srcdir)/../../../automake/local.am
     42include $(top_srcdir)/../automake/local.am
  • cpukit/libmisc/dummy/Makefile.am

    re5b78e2 r5e622a9  
    1212OBJS = $(C_O_FILES)
    1313
    14 include $(top_srcdir)/../../../automake/compile.am
    15 include $(top_srcdir)/../../../automake/lib.am
     14include $(top_srcdir)/../automake/compile.am
     15include $(top_srcdir)/../automake/lib.am
    1616
    1717#
     
    2424TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/$(PGMNAME)$(LIB_VARIANT).rel
    2525
    26 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
     26all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
    2727
    2828.PRECIOUS: $(LIB)
     
    3030EXTRA_DIST = README dummy.c
    3131
    32 include $(top_srcdir)/../../../automake/local.am
     32include $(top_srcdir)/../automake/local.am
  • cpukit/libmisc/dumpbuf/Makefile.am

    re5b78e2 r5e622a9  
    1616OBJS = $(C_O_FILES)
    1717
    18 include $(top_srcdir)/../../../automake/compile.am
    19 include $(top_srcdir)/../../../automake/lib.am
     18include $(top_srcdir)/../automake/compile.am
     19include $(top_srcdir)/../automake/lib.am
    2020
    2121$(PROJECT_INCLUDE)/rtems:
     
    3434    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
    3535
    36 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
     36all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
    3737
    3838.PRECIOUS: $(LIB)
     
    4040EXTRA_DIST = dumpbuf.c
    4141
    42 include $(top_srcdir)/../../../automake/local.am
     42include $(top_srcdir)/../automake/local.am
  • cpukit/libmisc/monitor/Makefile.am

    re5b78e2 r5e622a9  
    2626OBJS = $(C_O_FILES)
    2727
    28 include $(top_srcdir)/../../../automake/compile.am
    29 include $(top_srcdir)/../../../automake/lib.am
     28include $(top_srcdir)/../automake/compile.am
     29include $(top_srcdir)/../automake/lib.am
    3030
    3131$(PROJECT_INCLUDE)/rtems:
     
    4444    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
    4545
    46 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
     46all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
    4747
    4848.PRECIOUS: $(LIB)
     
    5353    mon-task.c
    5454
    55 include $(top_srcdir)/../../../automake/local.am
     55include $(top_srcdir)/../automake/local.am
  • cpukit/libmisc/mw-fb/Makefile.am

    re5b78e2 r5e622a9  
    1717OBJS = $(C_O_FILES)
    1818
    19 include $(top_srcdir)/../../../automake/compile.am
    20 include $(top_srcdir)/../../../automake/lib.am
     19include $(top_srcdir)/../automake/compile.am
     20include $(top_srcdir)/../automake/lib.am
    2121
    2222$(PROJECT_INCLUDE)/rtems:
     
    4141EXTRA_DIST = $(C_FILES)
    4242
    43 include $(top_srcdir)/../../../automake/local.am
     43include $(top_srcdir)/../automake/local.am
  • cpukit/libmisc/rtmonuse/Makefile.am

    re5b78e2 r5e622a9  
    1616OBJS = $(C_O_FILES)
    1717
    18 include $(top_srcdir)/../../../automake/compile.am
    19 include $(top_srcdir)/../../../automake/lib.am
     18include $(top_srcdir)/../automake/compile.am
     19include $(top_srcdir)/../automake/lib.am
    2020
    2121$(PROJECT_INCLUDE)/rtems:
     
    3434    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
    3535
    36 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
     36all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
    3737
    3838.PRECIOUS: $(LIB)
     
    4040EXTRA_DIST = rtmonuse.c
    4141
    42 include $(top_srcdir)/../../../automake/local.am
     42include $(top_srcdir)/../automake/local.am
  • cpukit/libmisc/serdbg/Makefile.am

    re5b78e2 r5e622a9  
    1717OBJS = $(C_O_FILES)
    1818
    19 include $(top_srcdir)/../../../automake/compile.am
    20 include $(top_srcdir)/../../../automake/lib.am
     19include $(top_srcdir)/../automake/compile.am
     20include $(top_srcdir)/../automake/lib.am
    2121
    2222$(PROJECT_INCLUDE):
     
    3535    $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
    3636
    37 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
     37all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
    3838
    3939.PRECIOUS: $(LIB)
     
    4242             termios_printk.c termios_printk.h termios_printk_cnf.h
    4343
    44 include $(top_srcdir)/../../../automake/local.am
     44include $(top_srcdir)/../automake/local.am
  • cpukit/libmisc/shell/Makefile.am

    re5b78e2 r5e622a9  
    1818OBJS = $(C_O_FILES)
    1919
    20 include $(top_srcdir)/../../../automake/compile.am
    21 include $(top_srcdir)/../../../automake/lib.am
     20include $(top_srcdir)/../automake/compile.am
     21include $(top_srcdir)/../automake/lib.am
    2222
    2323$(PROJECT_INCLUDE)/rtems:
     
    3737
    3838if RTEMS_LIBSHELL
    39 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
     39all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
    4040endif
    4141
     
    4444EXTRA_DIST = README shell.c cmds.c shell.h
    4545
    46 include $(top_srcdir)/../../../automake/local.am
     46include $(top_srcdir)/../automake/local.am
  • cpukit/libmisc/stackchk/Makefile.am

    re5b78e2 r5e622a9  
    1717OBJS = $(C_O_FILES)
    1818
    19 include $(top_srcdir)/../../../automake/compile.am
    20 include $(top_srcdir)/../../../automake/lib.am
     19include $(top_srcdir)/../automake/compile.am
     20include $(top_srcdir)/../automake/lib.am
    2121
    2222$(PROJECT_INCLUDE)/rtems:
     
    3535    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
    3636
    37 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
     37all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
    3838
    3939.PRECIOUS: $(LIB)
     
    4141EXTRA_DIST = README check.c
    4242
    43 include $(top_srcdir)/../../../automake/local.am
     43include $(top_srcdir)/../automake/local.am
  • cpukit/libmisc/untar/Makefile.am

    re5b78e2 r5e622a9  
    1616OBJS = $(C_O_FILES)
    1717
    18 include $(top_srcdir)/../../../automake/compile.am
    19 include $(top_srcdir)/../../../automake/lib.am
     18include $(top_srcdir)/../automake/compile.am
     19include $(top_srcdir)/../automake/lib.am
    2020
    2121$(PROJECT_INCLUDE)/rtems:
     
    3434    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
    3535
    36 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
     36all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
    3737
    3838.PRECIOUS: $(LIB)
     
    4040EXTRA_DIST = README untar.c
    4141
    42 include $(top_srcdir)/../../../automake/local.am
     42include $(top_srcdir)/../automake/local.am
  • cpukit/libmisc/wrapup/Makefile.am

    re5b78e2 r5e622a9  
    55LIB = $(ARCH)/libmisc.a
    66
    7 include $(top_srcdir)/../../../automake/compile.am
    8 include $(top_srcdir)/../../../automake/lib.am
     7include $(top_srcdir)/../automake/compile.am
     8include $(top_srcdir)/../automake/lib.am
    99
    1010## XXX temporarily remove this from the list because it causes a
     
    3737all-local: $(ARCH) $(LIB)
    3838
    39 include $(top_srcdir)/../../../automake/local.am
     39include $(top_srcdir)/../automake/local.am
Note: See TracChangeset for help on using the changeset viewer.