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.
21 lines
343 B
21 lines
343 B
# giteapc: version=1 |
|
# giteapc: depends=Lephenixnoir/sh-elf-binutils |
|
|
|
PREFIX ?= $(GITEAPC_PREFIX) |
|
VERSION = 11.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
|
|
|