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