mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 04:23:38 +01:00
15 lines
411 B
TOML
15 lines
411 B
TOML
|
[package]
|
||
|
name = 'fxlibc'
|
||
|
version = '1.3.0'
|
||
|
type = 'app'
|
||
|
|
||
|
[build]
|
||
|
configure = 'cmake -DFXLIBC_PIC=1 -DFXLIBC_TARGET=vhex-sh -B build-vhex -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-vhex.cmake'
|
||
|
build = 'make -C build-vhex'
|
||
|
install = 'make -C build-vhex install'
|
||
|
uninstall = """ \
|
||
|
if [ -e build-vhex/install_manifest.txt ]; then \
|
||
|
xargs rm -f < build-vhex/install_manifest.txt; \
|
||
|
fi \
|
||
|
"""
|