source: rtems/cpukit/libmisc/Makefile.am @ 793dd46

4.104.114.84.95
Last change on this file since 793dd46 was 793dd46, checked in by Joel Sherrill <joel.sherrill@…>, on 07/18/07 at 21:31:49

2007-07-18 Joel Sherrill <joel.sherrill@…>

  • libmisc/Makefile.am, libmisc/cpuuse/cpuusagereport.c, libmisc/cpuuse/cpuusagereset.c: Fix bug where cpu usage calculation was always using uptime not time since last cpu usage reset when using nanoseconds granularity.
  • libmisc/cpuuse/cpuusagedata.c: New file.
  • Property mode set to 100644
File size: 2.3 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/cpuusagereport.c cpuuse/cpuusagereset.c \
23    cpuuse/cpuuse.h cpuuse/cpuusagedata.c
24
25## devnull
26
27noinst_LIBRARIES += libdevnull.a
28libdevnull_a_SOURCES = devnull/devnull.c devnull/devnull.h
29
30## dummy
31EXTRA_DIST += dummy/README
32
33noinst_LIBRARIES += libdummy.a
34libdummy_a_SOURCES = dummy/dummy.c
35
36## dumpbuf
37noinst_LIBRARIES += libdumpbuf.a
38libdumpbuf_a_SOURCES = dumpbuf/dumpbuf.c dumpbuf/dumpbuf.h
39
40## monitor
41noinst_LIBRARIES += libmonitor.a
42libmonitor_a_SOURCES = monitor/mon-command.c monitor/mon-symbols.c \
43    monitor/mon-prmisc.c monitor/mon-monitor.c monitor/mon-object.c \
44    monitor/mon-server.c monitor/mon-task.c monitor/mon-queue.c \
45    monitor/mon-driver.c monitor/mon-itask.c monitor/mon-extension.c \
46    monitor/mon-manager.c monitor/mon-config.c monitor/symbols.h \
47    monitor/monitor.h
48if HAS_MP
49libmonitor_a_SOURCES += monitor/mon-mpci.c
50endif
51
52EXTRA_DIST += monitor/README
53
54## mw-fb
55noinst_LIBRARIES += libmw-fb.a
56libmw_fb_a_SOURCES = mw-fb/mw_fb.c mw-fb/mw_uid.c mw-fb/mw_fb.h \
57    mw-fb/mw_uid.h
58
59## shell
60
61if LIBSHELL
62noinst_LIBRARIES += libshell.a
63libshell_a_SOURCES = shell/cmds.c shell/shell.c shell/shell.h
64endif
65
66EXTRA_DIST += shell/README
67
68## serdbg
69
70if LIBSERDBG
71noinst_LIBRARIES += libserdbg.a
72libserdbg_a_SOURCES = serdbg/serdbg.c serdbg/serdbgio.c \
73    serdbg/termios_printk.c serdbg/serdbgcnf.h serdbg/serdbg.h \
74    serdbg/termios_printk_cnf.h serdbg/termios_printk.h
75endif
76
77EXTRA_DIST += serdbg/README
78
79## stackchk
80noinst_LIBRARIES += libstackchk.a
81libstackchk_a_SOURCES = stackchk/check.c stackchk/internal.h \
82    stackchk/stackchk.h
83
84EXTRA_DIST += stackchk/README
85
86## libuntar
87noinst_LIBRARIES += libuntar.a
88libuntar_a_SOURCES = untar/untar.c untar/untar.h
89
90EXTRA_DIST += untar/README
91
92## fsmount
93noinst_LIBRARIES += libfsmount.a
94libfsmount_a_SOURCES = fsmount/fsmount.c fsmount/fsmount.h
95
96EXTRA_DIST += fsmount/README
97
98## ---
99include $(srcdir)/preinstall.am
100include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.