blob: 5660ad9c313d4075903606a0985f527cb16686c3 [file] [log] [blame]
adamdunkels4b0459d2003-04-05 12:35:32 +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#
oliverschmidt6784cc62005-04-18 21:50:53 +000033# $Id: Makefile,v 1.7 2005/04/18 21:50:53 oliverschmidt Exp $
adamdunkels4b0459d2003-04-05 12:35:32 +000034#
35
adamdunkels386f7102003-04-24 17:25:12 +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 directory.prg directory.dsc
adamdunkels37bb23d2003-04-08 20:10:07 +000040
adamdunkels4b0459d2003-04-05 12:35:32 +000041CONTIKI=../contiki
adamdunkels386f7102003-04-24 17:25:12 +000042CONTIKICC65=../contiki-cc65
adamdunkels4b0459d2003-04-05 12:35:32 +000043SYS=vic20
44
oliverschmidt6784cc62005-04-18 21:50:53 +000045include $(CONTIKICC65)/Makefile.cc65
adamdunkels386f7102003-04-24 17:25:12 +000046include Makefile.depend
adamdunkels4b0459d2003-04-05 12:35:32 +000047
adamdunkels386f7102003-04-24 17:25:12 +000048CFLAGS=$(CFLAGSCOMMON) -DWITH_LOADER_ARCH
adamdunkels4b0459d2003-04-05 12:35:32 +000049
50UIP=uip.o uip_arch.o uip_main.o resolv.o
51
52WWW=www.o webclient.o http-strings.o htmlparser.o html-strings.o
53EMAIL=email.o smtp.o smtp-strings.o
54WEBSERVER=webserver.o http-strings.o
55TELNET=simpletelnet.o telnet.o
56
57contiki: contiki-main.o strncasecmp.o petsciiconv.o \
adamdunkels7c1928a2004-07-04 20:11:14 +000058 ctk-conio.o ctk.o ek.o arg.o timer.o \
adamdunkels386f7102003-04-24 17:25:12 +000059 program-handler.o loader-arch.o \
60 about-dsc.o netconf-dsc.o processes-dsc.o directory-dsc.o
61 $(CL) $(CLFLAGS) -C vic20.cfg -o contiki -t $(SYS) $^
adamdunkels37bb23d2003-04-08 20:10:07 +000062