blob: b46ffec900eadd6283206241f97be1dc6d0b4a1a [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#
oliverschmidtded45872005-05-07 13:29:39 +000030# $Id: Makefile,v 1.9 2005/05/07 13:29:39 oliverschmidt Exp $
adamdunkels42071e22003-04-08 18:08:24 +000031#
32
oliverschmidtded45872005-05-07 13:29:39 +000033all: contiki loader-arch-module.o loader-arch-module-dsc.o contiki-labels.o \
adamdunkels28e6ec22003-09-07 18:11:56 +000034 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
oliverschmidtaf211622005-04-18 22:06:20 +000041include $(CONTIKI)/Makefile.common
oliverschmidtec69f092005-04-18 21:50:21 +000042include $(CONTIKICC65)/Makefile.cc65
adamdunkels42071e22003-04-08 18:08:24 +000043
oliverschmidtd2df7be2005-04-24 23:24:05 +000044CFLAGS=$(CFLAGSCC65) -DWITH_LOADER_ARCH
adamdunkels42071e22003-04-08 18:08:24 +000045
adamdunkels42071e22003-04-08 18:08:24 +000046contiki: contiki-main.o strncasecmp.o petsciiconv.o \
adamdunkels78b7a822004-07-04 19:51:19 +000047 ctk-conio.o ctk.o arg.o ek.o timer.o \
adamdunkels28e6ec22003-09-07 18:11:56 +000048 program-handler.o loader-arch.o \
49 about-dsc.o netconf-dsc.o processes-dsc.o memstat-dsc.o
50 $(CL) $(CLFLAGS) -o contiki -t $(SYS) $^
adamdunkels42071e22003-04-08 18:08:24 +000051