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?
8 lines
259 B
Makefile
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
|