Adjusted Makefile to the final 'atarixl' cc65 target.

- Assign source files to the splitted shadow RAM areas.
- Switched to dynamic Ethernet driver loading.
This commit is contained in:
Oliver Schmidt 2013-10-03 22:40:25 +02:00
parent 7c2f3b3911
commit 149f3834e6
1 changed files with 6 additions and 7 deletions

View File

@ -31,17 +31,15 @@
# Author: Oliver Schmidt <ol.sc@web.de>
#
ETHERNET = cs8900a
CONTIKI_CPU = $(CONTIKI)/cpu/6502
include $(CONTIKI_CPU)/Makefile.6502
STARTADDR_FLAG = -S 0x2400
SHADOW_RAM_SOURCEFILES = tcpip.c uip.c uip_arp.c
# Set a target-specific variable value
${addprefix $(OBJECTDIR)/,${call oname, $(SHADOW_RAM_SOURCEFILES)}}: CFLAGS += --code-name SHADOW_RAM
SHADOW_RAM_SOURCEFILES = etimer.c procinit.c uip.c
SHADOW_RAM2_SOURCEFILES = clock.c uip_arch.c uip_arp.c
# Set target-specific variable values
${addprefix $(OBJECTDIR)/,${call oname, $(SHADOW_RAM_SOURCEFILES)}}: CFLAGS += --code-name SHADOW_RAM
${addprefix $(OBJECTDIR)/,${call oname, $(SHADOW_RAM2_SOURCEFILES)}}: CFLAGS += --code-name SHADOW_RAM2
ifeq ($(MAKECMDGOALS),disk)
ifndef DIR2ATR
${error DIR2ATR not defined! You must specify where dir2atr resides}
@ -54,6 +52,7 @@ disk: all
cp $(CONTIKI)/tools/$(TARGET)/dos25/dup.sys atr/dup.sys
cp $(CONTIKI_PROJECT).$(TARGET) atr/autorun.sys
cp $(CONTIKI)/tools/$(TARGET)/sample.cfg atr/contiki.cfg
cp cs8900a.eth atr/cs8900a.eth
ifeq ($(HTTPD-CFS),1)
cp httpd-cfs/index.htm atr/index.htm
cp httpd-cfs/backgrnd.gif atr/backgrnd.gif