blob: 9a8e60dfea81dd44d47200fe9ec69f324023ebae [file] [log] [blame]
adamdunkels5ab9ddb2003-04-08 19:05:22 +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. 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#
adamdunkels243e1f72003-08-06 23:13:06 +000033# $Id: Makefile.programs,v 1.12 2003/08/06 23:13:06 adamdunkels Exp $
adamdunkels5ab9ddb2003-04-08 19:05:22 +000034#
35
adamdunkels179f7182003-04-17 18:59:05 +000036all: loader-arch-module.o loader-arch-dsc.o contiki-labels.o \
adamdunkels00c9bdb2003-04-17 19:55:29 +000037 about.prg about.dsc \
38 netconf.prg netconf.dsc \
adamdunkelsf471cc42003-04-18 00:14:13 +000039 processes.prg processes.dsc \
40 www.prg www.dsc \
41 simpletelnet.prg telnet.dsc \
42 email.prg \
43 memstat.prg memstat.dsc \
adamdunkels04714032003-08-05 13:54:31 +000044 vnc.prg \
adamdunkelsc80d9e32003-07-31 23:11:13 +000045 webserver.prg webserver.dsc \
46 wget.prg wget.dsc \
adamdunkels243e1f72003-08-06 23:13:06 +000047 calc.prg \
adamdunkelsf471cc42003-04-18 00:14:13 +000048 directory.prg directory.dsc \
49 blueround.prg blueround.dsc \
adamdunkelsfacd25c2003-04-24 17:12:54 +000050 enabler.prg enabler.dsc \
51 springlight.prg springlight.dsc \
52 default.prg default.dsc \
adamdunkelseeb5edd2003-04-25 08:45:59 +000053 ssfire.sav \
adamdunkelsc80d9e32003-07-31 23:11:13 +000054 rrnet.drv rrnet.dsc \
adamdunkelseeb5edd2003-04-25 08:45:59 +000055 slip.drv slip.dsc \
adamdunkelsc80d9e32003-07-31 23:11:13 +000056 tfe.drv tfe.dsc \
adamdunkels243e1f72003-08-06 23:13:06 +000057 ssconfig.prg \
58 config.prg configedit.prg configedit.dsc
adamdunkels5ab9ddb2003-04-08 19:05:22 +000059
adamdunkelsfacd25c2003-04-24 17:12:54 +000060SYS=c64
adamdunkels5ab9ddb2003-04-08 19:05:22 +000061
adamdunkelsfacd25c2003-04-24 17:12:54 +000062include $(CONTIKICC65)/Makefile.common
63
64CFLAGS:=$(CFLAGSCOMMON) \
adamdunkels77e47062003-04-17 15:09:31 +000065 -DCTK_HIRES \
adamdunkels5ab9ddb2003-04-08 19:05:22 +000066 -DWITH_LOADER_ARCH \
adamdunkelsc80d9e32003-07-31 23:11:13 +000067 -DWITH_UIP -DWITH_ETHERNET
adamdunkels179f7182003-04-17 18:59:05 +000068
adamdunkels243e1f72003-08-06 23:13:06 +000069configedit.prg: configedit.o c64-fs-write.o
70
adamdunkels5ab9ddb2003-04-08 19:05:22 +000071email.prg: $(EMAIL)
72
73www.prg: $(WWW)
74
adamdunkelsc80d9e32003-07-31 23:11:13 +000075webserver.prg: $(WEBSERVER)
76
adamdunkels5ab9ddb2003-04-08 19:05:22 +000077simpletelnet.prg: $(TELNET)
78
adamdunkelsc80d9e32003-07-31 23:11:13 +000079tfe.drv: tfe-drv.o cs8900a.o tfe-drv-asm.o
80
81rrnet.drv: rrnet-drv.o cs8900a.o rrnet-drv-asm.o
adamdunkelseeb5edd2003-04-25 08:45:59 +000082
83slip.drv: slip-drv.o rs232dev.o
84
adamdunkelsc80d9e32003-07-31 23:11:13 +000085wget.prg: wget.o webclient.o http-strings.o http-user-agent-string.o
86
adamdunkelsfacd25c2003-04-24 17:12:54 +000087VNC=vnc.o vnc-viewer.o vnc-draw.o vnc-draw-asm.o
adamdunkels77e47062003-04-17 15:09:31 +000088vnc.prg: $(VNC)
89
90blueround.prg: themeloader.o ctk-hires-theme-blueround.o contiki-labels.o
91 cl65 --module -t c64 -o $@ loader-arch-module.o $^
92
93default.prg: themeloader.o ctk-hires-theme-default.o contiki-labels.o
adamdunkels00c9bdb2003-04-17 19:55:29 +000094 cl65 -Ln default-prg.labels --module -t c64 -o $@ loader-arch-module.o $^
adamdunkelsfacd25c2003-04-24 17:12:54 +000095
96enabler.prg: themeloader.o ctk-hires-theme-enabler.o contiki-labels.o
97 cl65 -Ln default-prg.labels --module -t c64 -o $@ loader-arch-module.o $^
98
99springlight.prg: themeloader.o ctk-hires-theme-springlight.o contiki-labels.o
100 cl65 -Ln default-prg.labels --module -t c64 -o $@ loader-arch-module.o $^
101