blob: 4c815e7796391badbd47700f0ef3fb327fc2a146 [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.
12# 3. All advertising materials mentioning features or use of this software
13# must display the following acknowledgement:
14# This product includes software developed by Adam Dunkels.
15# 4. The name of the author may not be used to endorse or promote
16# products derived from this software without specific prior
17# written permission.
18#
19# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
20# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
23# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
25# GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30#
31# This file is part of the Contiki desktop environment
32#
adamdunkels28e6ec22003-09-07 18:11:56 +000033# $Id: Makefile,v 1.2 2003/09/07 18:11:56 adamdunkels Exp $
adamdunkels42071e22003-04-08 18:08:24 +000034#
35
adamdunkels28e6ec22003-09-07 18:11:56 +000036all: contiki loader-arch-module.o loader-arch-dsc.o contiki-labels.o \
37 about.prg about.dsc processes.prg processes.dsc \
38 netconf.prg netconf.dsc memstat.prg memstat.dsc
39
adamdunkels42071e22003-04-08 18:08:24 +000040CONTIKI=../contiki
adamdunkels28e6ec22003-09-07 18:11:56 +000041CONTIKICC65=../contiki-cc65
adamdunkels42071e22003-04-08 18:08:24 +000042SYS=c128
43
adamdunkels28e6ec22003-09-07 18:11:56 +000044include $(CONTIKICC65)/Makefile.common
45include Makefile.depend
adamdunkels42071e22003-04-08 18:08:24 +000046
adamdunkels28e6ec22003-09-07 18:11:56 +000047CFLAGS=$(CFLAGSCOMMON) -DWITH_LOADER_ARCH
adamdunkels42071e22003-04-08 18:08:24 +000048
49UIP=uip.o uip_arch.o uip_main.o resolv.o
50
51WWW=www.o webclient.o http-strings.o htmlparser.o html-strings.o
52EMAIL=email.o smtp.o smtp-strings.o
53WEBSERVER=webserver.o http-strings.o
54TELNET=simpletelnet.o telnet.o
55
56contiki: contiki-main.o strncasecmp.o petsciiconv.o \
adamdunkels28e6ec22003-09-07 18:11:56 +000057 ctk-conio.o ctk.o arg.o dispatcher.o \
58 program-handler.o loader-arch.o \
59 about-dsc.o netconf-dsc.o processes-dsc.o memstat-dsc.o
60 $(CL) $(CLFLAGS) -o contiki -t $(SYS) $^
adamdunkels42071e22003-04-08 18:08:24 +000061