Skip to content

Commit 3c25aaa

Browse files
committed
mark generated code
1 parent e3d50b4 commit 3c25aaa

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
tools/png2chr/png.js linguist-generated
2+
tools/assemble/ca65.js linguist-generated
3+
tools/assemble/ld65.js linguist-generated

build.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function handleSpawn(exe, ...args) {
111111
}
112112
}
113113

114-
const ca65bin = nativeCC65 ? ['ca65'] : ['node', './tools/assemble/ca65'];
114+
const ca65bin = nativeCC65 ? ['ca65'] : ['node', './tools/assemble/ca65.js'];
115115

116116
console.time('assemble');
117117

@@ -131,7 +131,7 @@ console.timeEnd('assemble');
131131

132132
// link object files
133133

134-
const ld65bin = nativeCC65 ? ['ld65'] : ['node', './tools/assemble/ld65'];
134+
const ld65bin = nativeCC65 ? ['ld65'] : ['node', './tools/assemble/ld65.js'];
135135

136136
console.time('link');
137137

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)