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@5431 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc
2012-01-31 20:49:58 +00:00
parent b6276e75f3
commit b89b9b7049
156 changed files with 251 additions and 251 deletions

View File

@@ -8,6 +8,6 @@
.export _CallRoutine
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_CallRoutine = CallRoutine

View File

@@ -8,6 +8,6 @@
.export _FirstInit
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_FirstInit = FirstInit

View File

@@ -15,9 +15,9 @@
.export _get_tv
.importzp tmp1
.include "../inc/const.inc"
.include "../inc/geossym.inc"
.include "../inc/geossym2.inc"
.include "const.inc"
.include "geossym.inc"
.include "geossym2.inc"
_get_ostype:
ldx #0

View File

@@ -8,7 +8,7 @@
.export _GetRandom
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_GetRandom:
jsr GetRandom

View File

@@ -8,8 +8,8 @@
.export _GetSerialNumber
.include "../inc/jumptab.inc"
.include "../inc/geossym.inc"
.include "jumptab.inc"
.include "geossym.inc"
_GetSerialNumber:

View File

@@ -9,7 +9,7 @@
.export _InitForIO, _DoneWithIO
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_InitForIO = InitForIO

View File

@@ -8,6 +8,6 @@
.export _MainLoop
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_MainLoop = MainLoop

View File

@@ -8,6 +8,6 @@
.export _Panic
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_Panic = Panic

View File

@@ -8,6 +8,6 @@
.export _SetDevice
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_SetDevice = SetDevice

View File

@@ -8,6 +8,6 @@
.export _ToBASIC
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_ToBASIC = ToBASIC