You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
455 B
20 lines
455 B
# giteapc: version=1 depends=Lephenixnoir/sh-elf-gcc,Lephenixnoir/OpenLibm
|
|
|
|
-include giteapc-config.make
|
|
|
|
configure:
|
|
@ cmake -B build-gint -DFXLIBC_TARGET=gint -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-sh.cmake
|
|
|
|
build:
|
|
@ make -C build-gint
|
|
|
|
install:
|
|
@ make -C build-gint install
|
|
|
|
uninstall:
|
|
@ if [ -e build-gint/install_manifest.txt ]; then \
|
|
xargs rm -f < build-gint/install_manifest.txt; \
|
|
fi
|
|
|
|
.PHONY: configure build install uninstall
|