osd-contiki/apps/shell/Makefile.shell
fros4943 bf39076206 added experimental checkpointing functionality:
currently only implemented on the sky platform
2009-02-04 17:49:15 +00:00

25 lines
860 B
Makefile

shell_src = 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-run.c \
shell-rime-ping.c shell-rime-sniff.c shell-rime-netcmd.c \
shell-rime-debug.c shell-coffee.c \
shell-wget.c shell-httpd.c shell-irc.c \
shell-checkpoint.c
#shell-rsh.c
shell_dsc = shell-dsc.c
APPS+=webbrowser webserver irc
include $(CONTIKI)/apps/webbrowser/Makefile.webbrowser
include $(CONTIKI)/apps/webserver/Makefile.webserver
include $(CONTIKI)/apps/irc/Makefile.irc
ifndef PLATFORM_BUILD
override webserver_src = webserver-nogui.c http-strings.c psock.c memb.c \
httpd-cfs.c
endif
ifeq ($(TARGET),sky)
shell_src += shell-sky.c shell-exec.c
endif