Now that we have at least two examples working on the cc65 targets it is preferable to not name the program files all 'contiki'.
This commit is contained in:
parent
4189884793
commit
953d3ce7a0
3 changed files with 36 additions and 37 deletions
|
@ -30,7 +30,7 @@
|
|||
#
|
||||
# Author: Oliver Schmidt <ol.sc@web.de>
|
||||
#
|
||||
# $Id: Makefile.c64,v 1.7 2010/01/27 22:37:16 oliverschmidt Exp $
|
||||
# $Id: Makefile.c64,v 1.8 2010/01/31 09:34:13 oliverschmidt Exp $
|
||||
#
|
||||
|
||||
CONTIKI_CPU = $(CONTIKI)/cpu/6502
|
||||
|
@ -45,19 +45,18 @@ ifeq ($(MAKECMDGOALS),disk)
|
|||
endif
|
||||
endif
|
||||
|
||||
DISK = $(CONTIKI_PROJECT).d64
|
||||
disk: all
|
||||
$(C1541) -format contiki,00 d64 $(DISK)
|
||||
$(C1541) -attach $(DISK) -write $(CONTIKI_PROJECT).$(TARGET) contiki
|
||||
$(C1541) -attach $(DISK) -write $(CONTIKI)/tools/$(TARGET)/sample.cfg contiki.cfg
|
||||
$(C1541) -attach $(DISK) -write cs8900a.eth cs8900a.eth
|
||||
$(C1541) -attach $(DISK) -write lan91c96.eth lan91c96.eth
|
||||
$(C1541) -format contiki,00 d64 contiki.d64
|
||||
$(C1541) -attach contiki.d64 -write $(CONTIKI_PROJECT).$(TARGET) $(CONTIKI_PROJECT)
|
||||
$(C1541) -attach contiki.d64 -write $(CONTIKI)/tools/$(TARGET)/sample.cfg contiki.cfg
|
||||
$(C1541) -attach contiki.d64 -write cs8900a.eth cs8900a.eth
|
||||
$(C1541) -attach contiki.d64 -write lan91c96.eth lan91c96.eth
|
||||
ifeq ($(findstring WITH_MOUSE,$(DEFINES)),WITH_MOUSE)
|
||||
$(C1541) -attach $(DISK) -write $(CC65_HOME)/mou/c64-1351.mou c64-1351.mou
|
||||
$(C1541) -attach contiki.d64 -write $(CC65_HOME)/mou/c64-1351.mou c64-1351.mou
|
||||
endif
|
||||
ifeq ($(HTTPD-CFS),1)
|
||||
$(C1541) -attach $(DISK) -write httpd-cfs/index.html index.html
|
||||
$(C1541) -attach $(DISK) -write httpd-cfs/background.gif background.gif
|
||||
$(C1541) -attach $(DISK) -write httpd-cfs/contiki.gif contiki.gif
|
||||
$(C1541) -attach $(DISK) -write httpd-cfs/notfound.html notfound.html
|
||||
$(C1541) -attach contiki.d64 -write httpd-cfs/index.html index.html
|
||||
$(C1541) -attach contiki.d64 -write httpd-cfs/background.gif background.gif
|
||||
$(C1541) -attach contiki.d64 -write httpd-cfs/contiki.gif contiki.gif
|
||||
$(C1541) -attach contiki.d64 -write httpd-cfs/notfound.html notfound.html
|
||||
endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue