source: rtems/cpukit/libmisc/Makefile.am @ e1bce86

4.104.114.84.95
Last change on this file since e1bce86 was e1bce86, checked in by Joel Sherrill <joel.sherrill@…>, on 05/15/07 at 20:16:16

2007-05-15 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, preinstall.am, libmisc/Makefile.am, rtems/Makefile.am, rtems/include/rtems.h, rtems/include/rtems/rtems/ratemon.h, rtems/inline/rtems/rtems/ratemon.inl, rtems/src/ratemoncancel.c, rtems/src/ratemoncreate.c, rtems/src/ratemondelete.c, rtems/src/ratemongetstatus.c, rtems/src/ratemonident.c, rtems/src/ratemonperiod.c, rtems/src/ratemontimeout.c, score/Makefile.am, score/include/rtems/score/object.h, score/src/threadhandler.c, wrapup/Makefile.am: Integrate Rate Monotonic Statistics and Period Usage into Rate Monotonic Manager. Added the following directives: rtems_rate_monotonic_get_statistics, rtems_rate_monotonic_reset_statistics, rtems_rate_montonic_reset_all_statistics, rtems_rate_montonic_report_statistics, and rtems_object_get_name. Obsoleted the rtems/rtmonuse.h file as a public interface.
  • rtems/src/ratemongetstatistics.c, rtems/src/ratemonreportstatistics.c, rtems/src/ratemonresetall.c, rtems/src/ratemonresetstatistics.c, rtems/src/rtemsobjectgetname.c, score/src/objectgetnameasstring.c: New files.
  • libmisc/rtmonuse/rtmonuse.c, libmisc/rtmonuse/rtmonuse.h: Removed.
  • Property mode set to 100644
File size: 2.2 KB
Line 
1##
2##  $Id$
3##
4
5include $(top_srcdir)/automake/compile.am
6
7EXTRA_DIST = README
8
9noinst_LIBRARIES =
10
11## capture
12EXTRA_DIST += capture/README
13
14noinst_LIBRARIES += libcapture.a
15libcapture_a_SOURCES = capture/capture.c capture/capture-cli.c \
16    capture/capture.h capture/capture-cli.h
17
18## cpuuse
19EXTRA_DIST += cpuuse/README
20
21noinst_LIBRARIES += libcpuuse.a
22libcpuuse_a_SOURCES = cpuuse/cpuuse.c cpuuse/cpuuse.h
23
24## devnull
25
26noinst_LIBRARIES += libdevnull.a
27libdevnull_a_SOURCES = devnull/devnull.c devnull/devnull.h
28
29## dummy
30EXTRA_DIST += dummy/README
31
32noinst_LIBRARIES += libdummy.a
33libdummy_a_SOURCES = dummy/dummy.c
34
35## dumpbuf
36noinst_LIBRARIES += libdumpbuf.a
37libdumpbuf_a_SOURCES = dumpbuf/dumpbuf.c dumpbuf/dumpbuf.h
38
39## monitor
40noinst_LIBRARIES += libmonitor.a
41libmonitor_a_SOURCES = monitor/mon-command.c monitor/mon-symbols.c \
42    monitor/mon-prmisc.c monitor/mon-monitor.c monitor/mon-object.c \
43    monitor/mon-server.c monitor/mon-task.c monitor/mon-queue.c \
44    monitor/mon-driver.c monitor/mon-dname.c monitor/mon-itask.c \
45    monitor/mon-extension.c monitor/mon-manager.c monitor/mon-config.c \
46    monitor/symbols.h monitor/monitor.h
47if HAS_MP
48libmonitor_a_SOURCES += monitor/mon-mpci.c
49endif
50
51EXTRA_DIST += monitor/README
52
53## mw-fb
54noinst_LIBRARIES += libmw-fb.a
55libmw_fb_a_SOURCES = mw-fb/mw_fb.c mw-fb/mw_uid.c mw-fb/mw_fb.h \
56    mw-fb/mw_uid.h
57
58## shell
59
60if LIBSHELL
61noinst_LIBRARIES += libshell.a
62libshell_a_SOURCES = shell/cmds.c shell/shell.c shell/shell.h
63endif
64
65EXTRA_DIST += shell/README
66
67## serdbg
68
69if LIBSERDBG
70noinst_LIBRARIES += libserdbg.a
71libserdbg_a_SOURCES = serdbg/serdbg.c serdbg/serdbgio.c \
72    serdbg/termios_printk.c serdbg/serdbgcnf.h serdbg/serdbg.h \
73    serdbg/termios_printk_cnf.h serdbg/termios_printk.h
74endif
75
76EXTRA_DIST += serdbg/README
77
78## stackchk
79noinst_LIBRARIES += libstackchk.a
80libstackchk_a_SOURCES = stackchk/check.c stackchk/internal.h \
81    stackchk/stackchk.h
82
83EXTRA_DIST += stackchk/README
84
85## libuntar
86noinst_LIBRARIES += libuntar.a
87libuntar_a_SOURCES = untar/untar.c untar/untar.h
88
89EXTRA_DIST += untar/README
90
91## fsmount
92noinst_LIBRARIES += libfsmount.a
93libfsmount_a_SOURCES = fsmount/fsmount.c fsmount/fsmount.h
94
95EXTRA_DIST += fsmount/README
96
97## ---
98include $(srcdir)/preinstall.am
99include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.