source: rtems/cpukit/libmisc/Makefile.am @ 9d0e65ed

4.104.114.84.95
Last change on this file since 9d0e65ed was 9d0e65ed, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/07/05 at 13:19:45

2005-02-07 Ralf Corsepius <ralf.corsepius@…>

  • Makefile.am: Add include/rtems/tar.h. Merge-in header rules from libmisc/Makefile.am
  • libmisc/Makefile.am: Remove header rules. Remove lib-specific CPPFLAGS.
  • configure.ac: Add checks for <tar.h>
  • 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/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## rtmonuse
68noinst_LIBRARIES += librtmonuse.a
69librtmonuse_a_SOURCES = rtmonuse/rtmonuse.c rtmonuse/rtmonuse.h
70
71## serdbg
72
73if LIBSERDBG
74noinst_LIBRARIES += libserdbg.a
75libserdbg_a_SOURCES = serdbg/serdbg.c serdbg/serdbgio.c \
76    serdbg/termios_printk.c serdbg/serdbgcnf.h serdbg/serdbg.h \
77    serdbg/termios_printk_cnf.h serdbg/termios_printk.h
78endif
79
80EXTRA_DIST += serdbg/README
81
82## stackchk
83noinst_LIBRARIES += libstackchk.a
84libstackchk_a_SOURCES = stackchk/check.c stackchk/internal.h \
85    stackchk/stackchk.h
86
87EXTRA_DIST += stackchk/README
88
89## libuntar
90noinst_LIBRARIES += libuntar.a
91libuntar_a_SOURCES = untar/untar.c untar/untar.h
92
93EXTRA_DIST += untar/README
94
95## fsmount
96noinst_LIBRARIES += libfsmount.a
97libfsmount_a_SOURCES = fsmount/fsmount.c fsmount/fsmount.h
98
99EXTRA_DIST += fsmount/README
100
101## ---
102
103all-local: $(PREINSTALL_FILES)
104
105include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.