network configuration has been modified for appropriate compilation

This commit is contained in:
matsutsuka 2007-11-28 10:11:55 +00:00
parent 16f9b124c4
commit 9f753bf737
2 changed files with 5 additions and 5 deletions

View file

@ -2,14 +2,14 @@
# Makefile for PC-6001 using z80/SDCC
# @author Takahide Matsutsuka <markn@markn.org>
#
# $Id: Makefile,v 1.5 2007/11/28 10:03:40 matsutsuka Exp $
# $Id: Makefile,v 1.6 2007/11/28 10:11:55 matsutsuka Exp $
#
CONTIKI = ../..
TARGET=pc-6001
APPS_DESKTOP = program-handler calc process-list shell about
APPS_NETWORK_CLIENT = $(APPS_DESKTOP) netconf webbrowser email telnet ftp irc
APPS_NETWORK_SERVER = cmdd telnetd shell www
APPS_NETWORK_SERVER = program-handler cmdd telnetd shell
# editor netconf dhcp webbrowser ftp irc email telnet telnetd
# cmdd codeprop webserver vnc
# directory

View file

@ -2,7 +2,7 @@
# Makefile for PC-6001 using z80/SDCC
# @author Takahide Matsutsuka <markn@markn.org>
#
# $Id: Makefile.pc-6001,v 1.6 2007/11/28 10:03:40 matsutsuka Exp $
# $Id: Makefile.pc-6001,v 1.7 2007/11/28 10:11:55 matsutsuka Exp $
#
ifndef CONTIKI
@ -38,11 +38,11 @@ else ifeq ($(MAKECMDGOALS),load)
CONTIKI_TARGET_MAIN=contiki-loader-main.c
else ifeq ($(MAKECMDGOALS),server)
CTKCONF=SERVER
PLATFORM_APPS="$(PLATFORM_APPS_NETWORK)"
PLATFORM_APPS = $(PLATFORM_APPS_NETWORK)
CONTIKI_TARGET_MAIN=contiki-server-main.c
else ifeq ($(MAKECMDGOALS),client)
CTKCONF=CLIENT
PLATFORM_APPS="$(PLATFORM_APPS_NETWORK)"
PLATFORM_APPS = $(PLATFORM_APPS_NETWORK)
CONTIKI_TARGET_MAIN=contiki-client-main.c
endif