Rename impl-generator-bin to impl-generator

This will start transitioning the impl generator to be a more generic helper tool, with the impl generator as one of its component.

Also, drop the "-bin" from the name, because what else is it going to be?
This commit is contained in:
Ben S
2015-12-07 23:52:14 +00:00
parent cf99295fa1
commit 9e44cd4eb8
7 changed files with 9 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
all:
xcodebuild -configuration Release
cp -r build/Release/Rust.bblm Contents/"Language Modules"
cd impl-generator; cargo build --release; cp target/release/impl-generator ../Contents/Resources/impl-generator-bin
cd helper-tool; cargo build --release; cp target/release/impl-generator ../Contents/Resources/impl-generator
clean:
rm -r build
rm -r build; cd helper-tool; cargo clean