Avoid paths in .include directives. The path needs to be rather set in the Makefile to allow to set it later depending on the target currently built.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5432 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
.import callmain
|
||||
.import zerobss
|
||||
.importzp sp
|
||||
.include "../inc/jumptab.inc"
|
||||
.include "jumptab.inc"
|
||||
|
||||
; ------------------------------------------------------------------------
|
||||
; Place the startup code in a special segment.
|
||||
|
||||
@@ -12,8 +12,8 @@
|
||||
|
||||
FILEDES = 3 ; first free to use file descriptor
|
||||
|
||||
.include "../inc/geossym.inc"
|
||||
.include "../inc/const.inc"
|
||||
.include "geossym.inc"
|
||||
.include "const.inc"
|
||||
.include "errno.inc"
|
||||
.include "fcntl.inc"
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
.include "joy-kernel.inc"
|
||||
.include "joy-error.inc"
|
||||
.include "../inc/geossym.inc"
|
||||
.include "geossym.inc"
|
||||
|
||||
.macpack generic
|
||||
|
||||
|
||||
@@ -8,10 +8,10 @@
|
||||
.include "tgi-kernel.inc"
|
||||
.include "tgi-error.inc"
|
||||
|
||||
.include "../inc/const.inc"
|
||||
.include "../inc/jumptab.inc"
|
||||
.include "../inc/geossym.inc"
|
||||
.include "../inc/geossym2.inc"
|
||||
.include "const.inc"
|
||||
.include "jumptab.inc"
|
||||
.include "geossym.inc"
|
||||
.include "geossym2.inc"
|
||||
|
||||
.macpack generic
|
||||
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
.constructor initmainargs, 24
|
||||
.import __argc, __argv
|
||||
|
||||
.include "../inc/const.inc"
|
||||
.include "../inc/geossym.inc"
|
||||
.include "const.inc"
|
||||
.include "geossym.inc"
|
||||
|
||||
;---------------------------------------------------------------------------
|
||||
; Setup arguments for main
|
||||
|
||||
@@ -13,9 +13,9 @@
|
||||
.export _mouse_def_callbacks
|
||||
|
||||
; .include "mouse-kernel.inc"
|
||||
; .include "../inc/const.inc"
|
||||
; .include "../inc/geossym.inc"
|
||||
.include "../inc/jumptab.inc"
|
||||
; .include "const.inc"
|
||||
; .include "geossym.inc"
|
||||
.include "jumptab.inc"
|
||||
|
||||
; .macpack generic
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
; error code could not be found.
|
||||
;
|
||||
|
||||
.include "../inc/const.inc"
|
||||
.include "const.inc"
|
||||
|
||||
.export __sys_oserrlist
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
.export __osmaperrno
|
||||
.include "errno.inc"
|
||||
.include "../inc/const.inc"
|
||||
.include "const.inc"
|
||||
|
||||
.code
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
.export __randomize
|
||||
.import _srand
|
||||
|
||||
.include "../inc/geossym.inc"
|
||||
.include "geossym.inc"
|
||||
|
||||
__randomize:
|
||||
lda random ; get random value from internal generator
|
||||
|
||||
Reference in New Issue
Block a user