mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 04:23:41 +01:00
63c74a4b92
Follow-up to 39ede78797
.
19 lines
578 B
Makefile
19 lines
578 B
Makefile
# giteapc: version=1 depends=Lephenixnoir/sh-elf-gcc
|
|
|
|
-include giteapc-config.make
|
|
|
|
PREFIX ?= $(shell sh-elf-gcc --print-search-dirs | grep install | sed 's/install: //')
|
|
|
|
configure:
|
|
@ true
|
|
|
|
build:
|
|
@ make USEGCC=1 TOOLPREFIX=sh-elf- CC=sh-elf-gcc AR=sh-elf-ar libdir="$(PREFIX)" includedir="$(PREFIX)/include"
|
|
|
|
install:
|
|
@ make USEGCC=1 TOOLPREFIX=sh-elf- CC=sh-elf-gcc AR=sh-elf-ar libdir="$(PREFIX)" includedir="$(PREFIX)/include" install-static install-headers
|
|
|
|
uninstall:
|
|
@ echo "uninstall not supported for OpenLibm, skipping"
|
|
|
|
.PHONY: configure build install uninstall
|