Files
Rust-BBEdit/Makefile
Ben S 9e44cd4eb8 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?
2015-12-07 23:52:14 +00:00

8 lines
259 B
Makefile

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