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

@@ -10,8 +10,8 @@
.import BitmapRegs
.export _BitmapClip
.include "../inc/jumptab.inc"
.include "../inc/geossym.inc"
.include "jumptab.inc"
.include "geossym.inc"
_BitmapClip:
jsr BitmapRegs

View File

@@ -8,7 +8,7 @@
.export BitmapRegs
.include "../inc/geossym.inc"
.include "geossym.inc"
BitmapRegs: ;a/x is a struct iconpic*
sta ptr4

View File

@@ -10,7 +10,7 @@
.import BitmapRegs
.export _BitmapUp
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_BitmapUp:
jsr BitmapRegs

View File

@@ -16,8 +16,8 @@
.import BitOtherRegs
.export _BitOtherClip
.include "../inc/jumptab.inc"
.include "../inc/geossym.inc"
.include "jumptab.inc"
.include "geossym.inc"
_BitOtherClip:
jsr BitOtherRegs

View File

@@ -11,9 +11,9 @@
.importzp tmp1
.export _DrawLine
.include "../inc/jumptab.inc"
.include "../inc/geossym.inc"
.include "../inc/geosmac.ca65.inc"
.include "jumptab.inc"
.include "geossym.inc"
.include "geosmac.ca65.inc"
_DrawLine:
tay

View File

@@ -12,7 +12,7 @@
.importzp tmp1
.export _DrawPoint
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_DrawPoint:
jsr PointRegs

View File

@@ -8,6 +8,6 @@
.export _FrameRectangle
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_FrameRectangle = FrameRectangle

View File

@@ -8,7 +8,7 @@
.export _GetCharWidth
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_GetCharWidth:
jsr GetCharWidth

View File

@@ -7,7 +7,7 @@
.import popa, popax
.export getintcharint
.include "../inc/geossym.inc"
.include "geossym.inc"
getintcharint:
sta r11L

View File

@@ -8,8 +8,8 @@
.export _GraphicsString
.include "../inc/jumptab.inc"
.include "../inc/geossym.inc"
.include "jumptab.inc"
.include "geossym.inc"
_GraphicsString:
sta r0L

View File

@@ -9,7 +9,7 @@
.export HLineRegs
.include "../inc/geossym.inc"
.include "geossym.inc"
HLineRegs:
stx r4H

View File

@@ -11,7 +11,7 @@
.export _HorizontalLine
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_HorizontalLine:
jsr HLineRegs

View File

@@ -8,7 +8,7 @@
.export _ImprintRectangle
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_ImprintRectangle = ImprintRectangle

View File

@@ -11,7 +11,7 @@
.export _InitDrawWindow
.include "../inc/geossym.inc"
.include "geossym.inc"
_InitDrawWindow: ;a/x is a struct window*
sta ptr4

View File

@@ -9,7 +9,7 @@
.import HLineRegs
.export _InvertLine
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_InvertLine:
jsr HLineRegs

View File

@@ -8,7 +8,7 @@
.export _InvertRectangle
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_InvertRectangle = InvertRectangle

View File

@@ -8,8 +8,8 @@
.export _LoadCharSet
.include "../inc/jumptab.inc"
.include "../inc/geossym.inc"
.include "jumptab.inc"
.include "geossym.inc"
_LoadCharSet:
sta r0L

View File

@@ -8,7 +8,7 @@
.export PointRegs
.include "../inc/geossym.inc"
.include "geossym.inc"
PointRegs: ;a/x is a struct pixel*
sta ptr4

View File

@@ -9,8 +9,8 @@
.import popa
.export _PutChar
.include "../inc/jumptab.inc"
.include "../inc/geossym.inc"
.include "jumptab.inc"
.include "geossym.inc"
_PutChar:
sta r11L

View File

@@ -10,7 +10,7 @@
.import getintcharint
.export _PutDecimal
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_PutDecimal:
jsr getintcharint

View File

@@ -10,7 +10,7 @@
.import getintcharint
.export _PutString
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_PutString:
jsr getintcharint

View File

@@ -10,7 +10,7 @@
.export _RecoverLine
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_RecoverLine:
jsr HLineRegs

View File

@@ -8,7 +8,7 @@
.export _RecoverRectangle
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_RecoverRectangle = RecoverRectangle

View File

@@ -8,6 +8,6 @@
.export _Rectangle
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_Rectangle = Rectangle

View File

@@ -8,6 +8,6 @@
.export _SetPattern
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_SetPattern = SetPattern

View File

@@ -10,7 +10,7 @@
.import return0, return1
.export _TestPoint
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_TestPoint:
jsr PointRegs

View File

@@ -8,6 +8,6 @@
.export _UseSystemFont
.include "../inc/jumptab.inc"
.include "jumptab.inc"
_UseSystemFont = UseSystemFont

View File

@@ -10,8 +10,8 @@
.export _VerticalLine
.include "../inc/jumptab.inc"
.include "../inc/geossym.inc"
.include "jumptab.inc"
.include "geossym.inc"
_VerticalLine:
stx r4H