From 9f753bf7372310c0f79b9bdfc6f340cc4781aaf7 Mon Sep 17 00:00:00 2001 From: matsutsuka Date: Wed, 28 Nov 2007 10:11:55 +0000 Subject: [PATCH] network configuration has been modified for appropriate compilation --- platform/pc-6001/Makefile | 4 ++-- platform/pc-6001/Makefile.pc-6001 | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/platform/pc-6001/Makefile b/platform/pc-6001/Makefile index 283b7a74f..b2cbfc33c 100644 --- a/platform/pc-6001/Makefile +++ b/platform/pc-6001/Makefile @@ -2,14 +2,14 @@ # Makefile for PC-6001 using z80/SDCC # @author Takahide Matsutsuka # -# $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 diff --git a/platform/pc-6001/Makefile.pc-6001 b/platform/pc-6001/Makefile.pc-6001 index d4d7ed556..7784ade8c 100644 --- a/platform/pc-6001/Makefile.pc-6001 +++ b/platform/pc-6001/Makefile.pc-6001 @@ -2,7 +2,7 @@ # Makefile for PC-6001 using z80/SDCC # @author Takahide Matsutsuka # -# $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