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

4.104.115
Last change on this file since e4a3d93 was e4a3d93, checked in by Chris Johns <chrisj@…>, on 06/12/09 at 05:51:43

2009-06-12 Chris Johns <chrisj@…>

  • libmisc/shell/dd-args.c, libmisc/shell/dd-conv.c, libmisc/shell/dd-conv_tab.c, libmisc/shell/dd-misc.c, libmisc/shell/dd-position.c, libmisc/shell/dd.h, libmisc/shell/extern-dd.h, libmisc/shell/hexdump-conv.c, libmisc/shell/hexdump-display.c, libmisc/shell/hexdump-odsyntax.c, libmisc/shell/hexdump-parse.c, libmisc/shell/hexdump.h, libmisc/shell/hexsyntax.c, libmisc/shell/main_dd.c, libmisc/shell/main_hexdump.c: New.
  • libmisc/Makefile.am, libmisc/shell/shellconfig.h: Add dd and hexdump commands.
  • Property mode set to 100644
File size: 4.6 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/mon-part.c \
47    monitor/mon-region.c monitor/mon-sema.c monitor/mon-editor.c \
48    monitor/symbols.h monitor/monitor.h
49if LIBNETWORKING
50libmonitor_a_SOURCES += monitor/mon-network.c
51endif
52if HAS_MP
53libmonitor_a_SOURCES += monitor/mon-mpci.c
54endif
55
56EXTRA_DIST += monitor/README
57
58## mw-fb
59noinst_LIBRARIES += libmw-fb.a
60libmw_fb_a_SOURCES = mw-fb/mw_fb.c mw-fb/mw_uid.c mw-fb/mw_fb.h \
61    mw-fb/mw_uid.h
62
63## shell
64if LIBSHELL
65noinst_LIBRARIES += libshell.a
66libshell_a_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/shell
67libshell_a_SOURCES = shell/cat_file.c shell/cmds.c shell/internal.h \
68    shell/main_alias.c shell/main_cat.c shell/main_cd.c shell/cmp-ls.c \
69    shell/main_chdir.c shell/main_chmod.c shell/main_chroot.c \
70    shell/main_cp.c shell/main_cpuuse.c shell/main_date.c shell/main_dir.c \
71    shell/main_echo.c shell/main_exit.c shell/main_halt.c shell/main_help.c \
72    shell/main_id.c shell/main_logoff.c shell/main_ls.c \
73    shell/main_mallocinfo.c shell/main_mdump.c shell/main_medit.c \
74    shell/main_mfill.c shell/main_mkdir.c shell/main_mount.c \
75    shell/main_mount_msdos.c shell/main_mmove.c shell/main_msdosfmt.c \
76    shell/main_mv.c shell/main_mwdump.c shell/main_perioduse.c \
77    shell/main_pwd.c shell/main_rm.c shell/main_rmdir.c shell/main_sleep.c \
78    shell/main_stackuse.c shell/main_tty.c shell/main_umask.c \
79    shell/main_unmount.c shell/main_blksync.c shell/main_whoami.c \
80    shell/shell.c shell/shell_cmdset.c shell/shell_getchar.c \
81    shell/shell_getprompt.c shell/shellconfig.c \
82    shell/shellconfig.h shell/shell.h shell/shell_makeargs.c \
83    shell/str2int.c shell/filemode.c shell/pwcache.c shell/print-ls.c\
84    shell/write_file.c shell/utils-cp.c  shell/utils-ls.c \
85    shell/err.c shell/errx.c shell/verr.c shell/vis.c \
86    shell/verrx.c shell/vwarn.c shell/vwarnx.c shell/warn.c shell/warnx.c \
87    shell/fts.c shell/print_heapinfo.c shell/main_wkspaceinfo.c \
88    shell/shell_script.c shell/login_prompt.c shell/login_check.c \
89    shell/fdisk.c shell/main_rtc.c \
90    shell/dd-args.c shell/main_dd.c shell/dd-conv.c shell/dd-conv_tab.c shell/dd-misc.c \
91    shell/dd-position.c \
92    shell/main_hexdump.c shell/hexdump-conv.c shell/hexdump-display.c \
93    shell/hexdump-odsyntax.c shell/hexdump-parse.c shell/hexsyntax.c
94
95if LIBNETWORKING
96libshell_a_SOURCES += shell/main_mount_ftp.c shell/main_mount_tftp.c \
97    shell/main_ifconfig.c shell/main_route.c shell/main_netstats.c \
98    shell/main_mount_nfs.c
99endif
100endif
101
102EXTRA_DIST += shell/README
103
104## serdbg
105
106if LIBSERDBG
107noinst_LIBRARIES += libserdbg.a
108libserdbg_a_SOURCES = serdbg/serdbg.c serdbg/serdbgio.c \
109    serdbg/termios_printk.c serdbg/serdbgcnf.h serdbg/serdbg.h \
110    serdbg/termios_printk_cnf.h serdbg/termios_printk.h
111endif
112
113EXTRA_DIST += serdbg/README
114
115## stackchk
116noinst_LIBRARIES += libstackchk.a
117libstackchk_a_SOURCES = stackchk/check.c stackchk/internal.h \
118    stackchk/stackchk.h
119
120EXTRA_DIST += stackchk/README
121
122## libuntar
123noinst_LIBRARIES += libuntar.a
124libuntar_a_SOURCES = untar/untar.c untar/untar.h
125
126EXTRA_DIST += untar/README
127
128## fsmount
129noinst_LIBRARIES += libfsmount.a
130libfsmount_a_SOURCES = fsmount/fsmount.c fsmount/fsmount.h
131
132EXTRA_DIST += fsmount/README
133
134## uuid
135noinst_LIBRARIES += libuuid.a
136libuuid_a_SOURCES = uuid/clear.c \
137        uuid/compare.c \
138        uuid/copy.c \
139        uuid/gen_uuid.c \
140        uuid/isnull.c \
141        uuid/pack.c \
142        uuid/parse.c \
143        uuid/unpack.c \
144        uuid/unparse.c \
145        uuid/uuid_time.c \
146        uuid/uuidd.h \
147        uuid/uuidP.h
148
149## ---
150include $(srcdir)/preinstall.am
151include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.