From 42585898a461f9be098b7a0f714f0273dd42baab Mon Sep 17 00:00:00 2001 From: Jeremy Rand Date: Tue, 8 Dec 2020 00:28:04 -0500 Subject: [PATCH] Rename tileData.pl to genData.pl because we are generating more than just tile data now. --- BuGS.xcodeproj/project.pbxproj | 4 ++-- BuGS/Makefile | 4 ++-- BuGS/{tileData.pl => genData.pl} | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename BuGS/{tileData.pl => genData.pl} (99%) diff --git a/BuGS.xcodeproj/project.pbxproj b/BuGS.xcodeproj/project.pbxproj index a60102c..861636e 100644 --- a/BuGS.xcodeproj/project.pbxproj +++ b/BuGS.xcodeproj/project.pbxproj @@ -86,7 +86,7 @@ 9D33970124AF9D55003222B3 /* sprites.macros */ = {isa = PBXFileReference; lastKnownFileType = text; path = sprites.macros; sourceTree = ""; }; 9D47CBE02547BEDB00CDA5CB /* gameMushroom.s */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = gameMushroom.s; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.asm.orcam; }; 9D47CC14254A698900CDA5CB /* gamePlayer.s */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = gamePlayer.s; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.asm.orcam; }; - 9D47CCBA25525C1A00CDA5CB /* tileData.pl */ = {isa = PBXFileReference; lastKnownFileType = text.script.perl; path = tileData.pl; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.perl; }; + 9D47CCBA25525C1A00CDA5CB /* genData.pl */ = {isa = PBXFileReference; lastKnownFileType = text.script.perl; path = genData.pl; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.perl; }; 9D53E5B32562320300E10169 /* gameShot.s */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = gameShot.s; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.asm.orcam; }; 9D53E6472565939300E10169 /* BUGS.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = BUGS.md; sourceTree = ""; }; 9D62AF3B249871A300348F45 /* colour.s */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = colour.s; sourceTree = ""; }; @@ -174,7 +174,7 @@ 9D2FF6DA24C4C79A000181E5 /* random.s */, 9DB1505224C7495400558B87 /* globals.s */, 9DB1505524D3BFCE00558B87 /* global.macros */, - 9D47CCBA25525C1A00CDA5CB /* tileData.pl */, + 9D47CCBA25525C1A00CDA5CB /* genData.pl */, 9D1553E8257F3DC600657188 /* sound */, 9D3396F324AECACC003222B3 /* sprites */, 9D1716912491C49300C83148 /* main.rez */, diff --git a/BuGS/Makefile b/BuGS/Makefile index 339e454..027923c 100644 --- a/BuGS/Makefile +++ b/BuGS/Makefile @@ -115,8 +115,8 @@ MESSAGE_CENTER=false # default. Press option-tab within Xcode to insert a tab character. gen: $(GENDIR)/tileData.s -$(GENDIR)/tileData.s: tileData.pl Makefile - tileData.pl "$(GENDIR)" +$(GENDIR)/tileData.s: genData.pl Makefile + genData.pl "$(GENDIR)" # For any files you generated in the gen target above, you should # add rules in genclean to remove those generated files when you diff --git a/BuGS/tileData.pl b/BuGS/genData.pl similarity index 99% rename from BuGS/tileData.pl rename to BuGS/genData.pl index debbe62..90b2d23 100755 --- a/BuGS/tileData.pl +++ b/BuGS/genData.pl @@ -1,5 +1,5 @@ #!/usr/bin/perl -# tileData.pl +# genData.pl # BuGS # # Created by Jeremy Rand on 2020-11-03.