From 47dc2d8020ef6abb95d1b06019140b7786b6afca Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Fri, 28 Mar 2008 22:36:52 +0000 Subject: [PATCH] It doesn't seem reasonable to me to presume that all targets support the elfloader. Therefore shell-exec.c may not be part of the common source files. For now I just moved it to the sky dependent source. In case the dependency on the sky target is undesirable someone needs to come up with a more flexible approach. --- apps/shell/Makefile.shell | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/shell/Makefile.shell b/apps/shell/Makefile.shell index 3be9ea3b8..2671d5cdc 100644 --- a/apps/shell/Makefile.shell +++ b/apps/shell/Makefile.shell @@ -1,11 +1,11 @@ shell_src = shell.c serial-shell.c shell-reboot.c \ - shell-vars.c shell-ps.c shell-rime.c shell-sendtest.c \ - shell-blink.c shell-text.c shell-time.c \ - shell-file.c shell-netfile.c shell-exec.c shell-run.c \ - shell-rime-ping.c shell-rime-sniff.c shell-rime-netcmd.c \ - #shell-rsh.c + shell-vars.c shell-ps.c shell-rime.c shell-sendtest.c \ + shell-blink.c shell-text.c shell-time.c \ + shell-file.c shell-netfile.c shell-run.c \ + shell-rime-ping.c shell-rime-sniff.c shell-rime-netcmd.c \ + #shell-rsh.c shell_dsc = shell-dsc.c ifeq ($(TARGET),sky) - shell_src += shell-sky.c + shell_src += shell-sky.c shell-exec.c endif