mirror of
https://git.planet-casio.com/Lephenixnoir/sh-elf-gcc.git
synced 2024-12-26 19:43:38 +01:00
21 lines
343 B
Makefile
21 lines
343 B
Makefile
# giteapc: version=1
|
|
# giteapc: depends=Lephenixnoir/sh-elf-binutils
|
|
|
|
PREFIX ?= $(GITEAPC_PREFIX)
|
|
VERSION = 14.1.0
|
|
|
|
-include giteapc-config.make
|
|
|
|
configure:
|
|
@ ./configure.sh $(VERSION) "$(PREFIX)"
|
|
|
|
build:
|
|
@ ./build.sh
|
|
|
|
install:
|
|
@ ./install.sh "$(PREFIX)"
|
|
|
|
uninstall:
|
|
@ ./uninstall.sh "$(PREFIX)"
|
|
|
|
.PHONY: configure build install uninstall
|