Changeset 2cc9367 in rtems
- Timestamp:
- 07/08/03 10:39:58 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- e30210ea
- Parents:
- e604ab6
- Location:
- cpukit/libmisc
- Files:
-
- 12 added
- 1 deleted
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libmisc/ChangeLog
re604ab6 r2cc9367 1 2003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.ac: Remove (Merged into ../configure.ac). 4 * Makefile.am: 5 Reflect having merged configure.ac into ../configure.ac. 6 * capture/config.h: New. 7 * capture/Makefile.am: Add config.h. 8 Reflect having merged configure.ac into ../configure.ac. 9 * cpuuse/config.h: New. 10 * cpuuse/Makefile.am: Add config.h. 11 Reflect having merged configure.ac into ../configure.ac. 12 * devnull/config.h: New. 13 * devnull/Makefile.am: Add config.h. 14 Reflect having merged configure.ac into ../configure.ac. 15 * dummy/config.h: New. 16 * dummy/Makefile.am: Add config.h. 17 Reflect having merged configure.ac into ../configure.ac. 18 * dumpbuf/config.h: New. 19 * dumpbuf/Makefile.am: Add config.h. 20 Reflect having merged configure.ac into ../configure.ac. 21 * monitor/config.h: New. 22 * monitor/Makefile.am: Add config.h. 23 Reflect having merged configure.ac into ../configure.ac. 24 * mw-fb/config.h: New. 25 * mw-fb/Makefile.am: Add config.h. 26 Reflect having merged configure.ac into ../configure.ac. 27 * rtmonuse/config.h: New. 28 * rtmonuse/Makefile.am: Add config.h. 29 Reflect having merged configure.ac into ../configure.ac. 30 * serdbg/config.h: New. 31 * serdbg/Makefile.am: Add config.h. 32 Reflect having merged configure.ac into ../configure.ac. 33 * shell/config.h: New. 34 * shell/Makefile.am: Add config.h. 35 Reflect having merged configure.ac into ../configure.ac. 36 * stackchk/config.h: New. 37 * stackchk/Makefile.am: Add config.h. 38 Reflect having merged configure.ac into ../configure.ac. 39 * untar/config.h: New. 40 * untar/Makefile.am: Add config.h. 41 Reflect having merged configure.ac into ../configure.ac. 42 * wrapup/Makefile.am: 43 Reflect having merged configure.ac into ../configure.ac. 44 1 45 2003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 46 -
cpukit/libmisc/Makefile.am
re604ab6 r2cc9367 2 2 ## $Id$ 3 3 ## 4 5 ACLOCAL_AMFLAGS = -I ../aclocal6 4 7 5 SUBDIRS = capture cpuuse devnull dummy dumpbuf monitor mw-fb shell \ … … 10 8 EXTRA_DIST = README 11 9 12 include $(top_srcdir)/ ../automake/subdirs.am13 include $(top_srcdir)/ ../automake/local.am10 include $(top_srcdir)/automake/subdirs.am 11 include $(top_srcdir)/automake/local.am -
cpukit/libmisc/capture/Makefile.am
re604ab6 r2cc9367 13 13 include_rtems_HEADERS = capture.h capture-cli.h 14 14 15 include $(top_srcdir)/../automake/compile.am 16 include $(top_srcdir)/../automake/lib.am 15 noinst_HEADERS = config.h 16 17 include $(top_srcdir)/automake/compile.am 18 include $(top_srcdir)/automake/lib.am 17 19 18 20 $(PROJECT_INCLUDE)/rtems: … … 37 39 EXTRA_DIST = README capture.c capture-cli.c 38 40 39 include $(top_srcdir)/ ../automake/local.am41 include $(top_srcdir)/automake/local.am -
cpukit/libmisc/cpuuse/Makefile.am
re604ab6 r2cc9367 14 14 include_rtems_HEADERS = cpuuse.h 15 15 16 include $(top_srcdir)/../automake/compile.am 17 include $(top_srcdir)/../automake/lib.am 16 noinst_HEADERS = config.h 17 18 include $(top_srcdir)/automake/compile.am 19 include $(top_srcdir)/automake/lib.am 18 20 19 21 $(PROJECT_INCLUDE)/rtems: … … 38 40 EXTRA_DIST = README cpuuse.c 39 41 40 include $(top_srcdir)/ ../automake/local.am42 include $(top_srcdir)/automake/local.am -
cpukit/libmisc/devnull/Makefile.am
re604ab6 r2cc9367 14 14 include_rtems_HEADERS = devnull.h 15 15 16 include $(top_srcdir)/../automake/compile.am 17 include $(top_srcdir)/../automake/lib.am 16 noinst_HEADERS = config.h 17 18 include $(top_srcdir)/automake/compile.am 19 include $(top_srcdir)/automake/lib.am 18 20 19 21 $(PROJECT_INCLUDE)/rtems: … … 38 40 EXTRA_DIST = devnull.c 39 41 40 include $(top_srcdir)/ ../automake/local.am42 include $(top_srcdir)/automake/local.am -
cpukit/libmisc/dummy/Makefile.am
re604ab6 r2cc9367 10 10 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 11 11 12 include $(top_srcdir)/../automake/compile.am 13 include $(top_srcdir)/../automake/lib.am 12 noinst_HEADERS = config.h 13 14 include $(top_srcdir)/automake/compile.am 15 include $(top_srcdir)/automake/lib.am 14 16 15 17 # … … 26 28 EXTRA_DIST = README dummy.c 27 29 28 include $(top_srcdir)/ ../automake/local.am30 include $(top_srcdir)/automake/local.am -
cpukit/libmisc/dumpbuf/Makefile.am
re604ab6 r2cc9367 14 14 include_rtems_HEADERS = dumpbuf.h 15 15 16 include $(top_srcdir)/../automake/compile.am 17 include $(top_srcdir)/../automake/lib.am 16 noinst_HEADERS = config.h 17 18 include $(top_srcdir)/automake/compile.am 19 include $(top_srcdir)/automake/lib.am 18 20 19 21 $(PROJECT_INCLUDE)/rtems: … … 38 40 EXTRA_DIST = dumpbuf.c 39 41 40 include $(top_srcdir)/ ../automake/local.am42 include $(top_srcdir)/automake/local.am -
cpukit/libmisc/monitor/Makefile.am
re604ab6 r2cc9367 23 23 include_rtems_HEADERS = monitor.h symbols.h 24 24 25 include $(top_srcdir)/../automake/compile.am 26 include $(top_srcdir)/../automake/lib.am 25 noinst_HEADERS = config.h 26 27 include $(top_srcdir)/automake/compile.am 28 include $(top_srcdir)/automake/lib.am 27 29 28 30 $(PROJECT_INCLUDE)/rtems: … … 50 52 mon-task.c 51 53 52 include $(top_srcdir)/ ../automake/local.am54 include $(top_srcdir)/automake/local.am -
cpukit/libmisc/mw-fb/Makefile.am
re604ab6 r2cc9367 14 14 include_rtems_HEADERS = mw_fb.h mw_uid.h 15 15 16 include $(top_srcdir)/../automake/compile.am 17 include $(top_srcdir)/../automake/lib.am 16 noinst_HEADERS = config.h 17 18 include $(top_srcdir)/automake/compile.am 19 include $(top_srcdir)/automake/lib.am 18 20 19 21 $(PROJECT_INCLUDE)/rtems: … … 38 40 EXTRA_DIST = $(C_FILES) 39 41 40 include $(top_srcdir)/ ../automake/local.am42 include $(top_srcdir)/automake/local.am -
cpukit/libmisc/rtmonuse/Makefile.am
re604ab6 r2cc9367 14 14 include_rtems_HEADERS = rtmonuse.h 15 15 16 include $(top_srcdir)/../automake/compile.am 17 include $(top_srcdir)/../automake/lib.am 16 noinst_HEADERS = config.h 17 18 include $(top_srcdir)/automake/compile.am 19 include $(top_srcdir)/automake/lib.am 18 20 19 21 $(PROJECT_INCLUDE)/rtems: … … 38 40 EXTRA_DIST = rtmonuse.c 39 41 40 include $(top_srcdir)/ ../automake/local.am42 include $(top_srcdir)/automake/local.am -
cpukit/libmisc/serdbg/Makefile.am
re604ab6 r2cc9367 11 11 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 12 12 13 noinst_HEADERS =14 13 if LIBSERDBG 15 14 include_HEADERS = serdbgcnf.h serdbg.h termios_printk_cnf.h \ … … 17 16 endif 18 17 19 include $(top_srcdir)/../automake/compile.am 20 include $(top_srcdir)/../automake/lib.am 18 noinst_HEADERS = config.h 19 20 include $(top_srcdir)/automake/compile.am 21 include $(top_srcdir)/automake/lib.am 21 22 22 23 $(PROJECT_INCLUDE): … … 44 45 termios_printk.c termios_printk.h termios_printk_cnf.h 45 46 46 include $(top_srcdir)/ ../automake/local.am47 include $(top_srcdir)/automake/local.am -
cpukit/libmisc/shell/Makefile.am
re604ab6 r2cc9367 16 16 endif 17 17 18 include $(top_srcdir)/../automake/compile.am 19 include $(top_srcdir)/../automake/lib.am 18 noinst_HEADERS = config.h 19 20 include $(top_srcdir)/automake/compile.am 21 include $(top_srcdir)/automake/lib.am 20 22 21 23 $(PROJECT_INCLUDE)/rtems: … … 42 44 EXTRA_DIST = README shell.c cmds.c shell.h 43 45 44 include $(top_srcdir)/ ../automake/local.am46 include $(top_srcdir)/automake/local.am -
cpukit/libmisc/stackchk/Makefile.am
re604ab6 r2cc9367 12 12 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 13 13 14 noinst_HEADERS = internal.h15 14 include_rtems_HEADERS = stackchk.h 16 15 17 include $(top_srcdir)/../automake/compile.am 18 include $(top_srcdir)/../automake/lib.am 16 noinst_HEADERS = config.h 17 noinst_HEADERS += internal.h 18 19 include $(top_srcdir)/automake/compile.am 20 include $(top_srcdir)/automake/lib.am 19 21 20 22 $(PROJECT_INCLUDE)/rtems: … … 39 41 EXTRA_DIST = README check.c 40 42 41 include $(top_srcdir)/ ../automake/local.am43 include $(top_srcdir)/automake/local.am -
cpukit/libmisc/untar/Makefile.am
re604ab6 r2cc9367 14 14 include_rtems_HEADERS = untar.h 15 15 16 include $(top_srcdir)/../automake/compile.am 17 include $(top_srcdir)/../automake/lib.am 16 noinst_HEADERS = config.h 17 18 include $(top_srcdir)/automake/compile.am 19 include $(top_srcdir)/automake/lib.am 18 20 19 21 $(PROJECT_INCLUDE)/rtems: … … 38 40 EXTRA_DIST = README untar.c 39 41 40 include $(top_srcdir)/ ../automake/local.am42 include $(top_srcdir)/automake/local.am -
cpukit/libmisc/wrapup/Makefile.am
re604ab6 r2cc9367 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 TMP_LIBS = ../monitor/$(ARCH)/libmonitor.a … … 44 44 all-local: $(ARCH) $(LIB) 45 45 46 include $(top_srcdir)/ ../automake/local.am46 include $(top_srcdir)/automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.