sh-elf-binutils/giteapc.make

23 lines
345 B
Plaintext
Raw Normal View History

2021-01-01 23:22:19 +01:00
# giteapc: version=1
2021-01-02 10:38:07 +01:00
PREFIX ?= $(GITEAPC_PREFIX)
VERSION = 2.35.1
2021-01-01 23:22:19 +01:00
2021-01-02 10:48:06 +01:00
ifneq ($(GITEAPC_CONFIG),)
include giteapc-config-$(GITEAPC_CONFIG).make
endif
2021-01-01 23:22:19 +01:00
configure:
2021-01-07 18:31:52 +01:00
@ ./configure.sh $(VERSION) "$(PREFIX)"
2021-01-01 23:22:19 +01:00
build:
@ ./build.sh
install:
2021-01-02 10:38:07 +01:00
@ ./install.sh "$(PREFIX)"
2021-01-01 23:22:19 +01:00
uninstall:
2021-01-02 10:38:07 +01:00
@ ./uninstall.sh "$(PREFIX)"
2021-01-01 23:22:19 +01:00
.PHONY: configure build install uninstall