blob: 1006f3a2bf4751b4cdbd2076767052fb2689db1a [file] [log] [blame]
adamdunkels42071e22003-04-08 18:08:24 +00001# Copyright (c) 2002, Adam Dunkels.
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions
6# are met:
7# 1. Redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer.
9# 2. Redistributions in binary form must reproduce the above copyright
10# notice, this list of conditions and the following disclaimer in the
11# documentation and/or other materials provided with the distribution.
adamdunkels78b7a822004-07-04 19:51:19 +000012# 3. The name of the author may not be used to endorse or promote
adamdunkels42071e22003-04-08 18:08:24 +000013# products derived from this software without specific prior
14# written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
17# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
22# GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28# This file is part of the Contiki desktop environment
29#
adamdunkels78b7a822004-07-04 19:51:19 +000030# $Id: Makefile,v 1.3 2004/07/04 19:51:19 adamdunkels Exp $
adamdunkels42071e22003-04-08 18:08:24 +000031#
32
adamdunkels28e6ec22003-09-07 18:11:56 +000033all: contiki loader-arch-module.o loader-arch-dsc.o contiki-labels.o \
34 about.prg about.dsc processes.prg processes.dsc \
35 netconf.prg netconf.dsc memstat.prg memstat.dsc
36
adamdunkels42071e22003-04-08 18:08:24 +000037CONTIKI=../contiki
adamdunkels28e6ec22003-09-07 18:11:56 +000038CONTIKICC65=../contiki-cc65
adamdunkels42071e22003-04-08 18:08:24 +000039SYS=c128
40
adamdunkels28e6ec22003-09-07 18:11:56 +000041include $(CONTIKICC65)/Makefile.common
42include Makefile.depend
adamdunkels42071e22003-04-08 18:08:24 +000043
adamdunkels28e6ec22003-09-07 18:11:56 +000044CFLAGS=$(CFLAGSCOMMON) -DWITH_LOADER_ARCH
adamdunkels42071e22003-04-08 18:08:24 +000045
adamdunkels78b7a822004-07-04 19:51:19 +000046UIP=uip.o uip_arch.o uiplib.o resolv.o tcpip.o
adamdunkels42071e22003-04-08 18:08:24 +000047
48WWW=www.o webclient.o http-strings.o htmlparser.o html-strings.o
49EMAIL=email.o smtp.o smtp-strings.o
50WEBSERVER=webserver.o http-strings.o
51TELNET=simpletelnet.o telnet.o
52
53contiki: contiki-main.o strncasecmp.o petsciiconv.o \
adamdunkels78b7a822004-07-04 19:51:19 +000054 ctk-conio.o ctk.o arg.o ek.o timer.o \
adamdunkels28e6ec22003-09-07 18:11:56 +000055 program-handler.o loader-arch.o \
56 about-dsc.o netconf-dsc.o processes-dsc.o memstat-dsc.o
57 $(CL) $(CLFLAGS) -o contiki -t $(SYS) $^
adamdunkels42071e22003-04-08 18:08:24 +000058