Skip to content

Commit ce44ffe

Browse files
committed
Update Warp3D SDK to 4.2 and fix #35
1 parent 0243805 commit ce44ffe

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

sdk/warp3d.sdk

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Short: Driver system for 3D hardware on the Amiga
2-
Version: 4.0
3-
Url: http://aminet.net/driver/video/Warp3DDev-4.0.lha
2+
Version: 4.2
3+
Url: http://aminet.net/dev/misc/Warp3DDev-4.2a.lha
44

55
Warp3D_Devel/Docs/Warp3D.doc
66
Warp3D_Devel/Docs/Warp3D.guide
77
Warp3D_Devel/Docs/Warp3D_Devel.guide
88
Warp3D_Devel/Include/clib/Warp3D_protos.h
99
Warp3D_Devel/Include/fd/Warp3D.fd = Warp3D_lib.fd
1010
Warp3D_Devel/Include/Warp3D/Warp3D.h
11-
fd2sfd : Warp3D_Devel/Include/fd/Warp3D_lib.fd Warp3D_Devel/Include/clib/Warp3D_protos.h
12-
sfdc : Warp3D_lib.sfd
13-
stubs : Warp3D_lib.sfd
11+
fd2sfd : Warp3D_Devel/Include/fd/Warp3D.fd Warp3D_Devel/Include/clib/Warp3D_protos.h
12+
sfdc : Warp3D.sfd
13+
stubs : Warp3D.sfd

toolchain-m68k

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ def process_sdk(sdk, dirname, files):
477477
copy(sfd, path.join('{target}/os-lib/sfd', sfd))
478478
elif kind == 'sfdc':
479479
source = f[1]
480-
basename = re.sub(r'_lib.sfd$', r'', path.basename(source))
480+
basename = re.sub(r'(_lib)?.sfd$', r'', path.basename(source))
481481

482482
proto = path.join('{target}/os-include/proto', basename + '.h')
483483
inline = path.join('{target}/os-include/inline', basename + '.h')
@@ -494,7 +494,7 @@ def process_sdk(sdk, dirname, files):
494494
'--output=' + lvo, source)
495495
elif kind == 'stubs':
496496
filename = f[1]
497-
c_file = re.sub(r'_lib\.sfd$', r'.c', path.basename(filename))
497+
c_file = re.sub(r'(_lib)?\.sfd$', r'.c', path.basename(filename))
498498

499499
info('stubs: "%s" -> "%s"', filename, c_file)
500500
execute('sfdc', '--quiet', '--target=m68k-amigaos', '--mode=autoopen',

0 commit comments

Comments
 (0)