blob: f630c3a74071e3ce618b887002fffd8d77479a08 [file] [log] [blame]
oliverschmidt76872e82004-12-26 14:13:34 +00001# Copyright (c) 2003, 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. The name of the author may not be used to endorse or promote
13# 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#
oliverschmidt8871bdd2005-03-13 21:33:57 +000030# $Id: Makefile.programs,v 1.4 2005/03/13 21:34:24 oliverschmidt Exp $
oliverschmidt76872e82004-12-26 14:13:34 +000031#
32
oliverschmidta330e332005-01-22 03:00:27 +000033all: loader-arch-module.o contiki-labels.o \
oliverschmidt8871bdd2005-03-13 21:33:57 +000034 lancegs.drv \
oliverschmidta330e332005-01-22 03:00:27 +000035 tfe.drv \
oliverschmidt76872e82004-12-26 14:13:34 +000036 about.prg \
37 calc.prg \
38 config.prg \
39 configedit.prg \
40 dhcp.prg \
41 email.prg \
42 irc.prg \
43 memstat.prg \
44 processes.prg \
45 telnet.prg \
46 welcome.prg \
47 www.prg
48
49SYS=apple2enh
50
51include $(CONTIKICC65)/Makefile.common
52
53AFLAGS:=-t $(SYS)
54
55CFLAGS:=$(CFLAGSCOMMON) \
56 -DWITH_ASCII -DWITH_UIP -DWITH_LOADER_ARCH -DWITH_ETHERNET
57
oliverschmidt8871bdd2005-03-13 21:33:57 +000058lancegs.drv: lancegs-drv.o lan91c96.o uip_arp.o
59
oliverschmidta330e332005-01-22 03:00:27 +000060tfe.drv: tfe-drv.o cs8900a.o tfe-drv-asm.o uip_arp.o
61
oliverschmidt76872e82004-12-26 14:13:34 +000062dhcp.prg: dhcp.o dhcpc.o lc-asm.o
63
64email.prg: $(EMAIL)
65
oliverschmidt16912882005-02-23 17:32:07 +000066irc.prg: irc.o ircc.o psock.o uipbuf.o lc-asm.o ircc-strings.o
oliverschmidt76872e82004-12-26 14:13:34 +000067
68telnet.prg: $(TELNET)
69
70www.prg: $(WWW)