mirror of
https://git.planet-casio.com/Lephenixnoir/sh-elf-binutils.git
synced 2025-01-05 08:23:37 +01:00
manual build and README
This commit is contained in:
parent
613ac08a84
commit
6bc0923556
3 changed files with 18 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -7,3 +7,4 @@
|
|||
!uninstall.sh
|
||||
!util.sh
|
||||
!.gitignore
|
||||
!README.md
|
||||
|
|
13
README.md
Normal file
13
README.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
# Automatic `sh-elf-binutils` installer
|
||||
|
||||
This script can be used to automatically compile and install an SH3/SH4 binutils suite. The normal use is with GiteaPC:
|
||||
|
||||
```
|
||||
% giteapc install Lephenixnoir/sh-elf-binutils
|
||||
```
|
||||
|
||||
You can also install binutils manually by running the GiteaPC Makefile with a manually-specified install prefix:
|
||||
|
||||
```
|
||||
% make -f giteapc.make configure build install PREFIX=$HOME/.local
|
||||
```
|
|
@ -1,6 +1,7 @@
|
|||
# giteapc: version=1
|
||||
|
||||
VERSION=2.35.1
|
||||
PREFIX ?= $(GITEAPC_PREFIX)
|
||||
VERSION = 2.35.1
|
||||
|
||||
configure:
|
||||
@ ./configure.sh $(VERSION)
|
||||
|
@ -9,9 +10,9 @@ build:
|
|||
@ ./build.sh
|
||||
|
||||
install:
|
||||
@ ./install.sh "$(GITEAPC_PREFIX)"
|
||||
@ ./install.sh "$(PREFIX)"
|
||||
|
||||
uninstall:
|
||||
@ ./uninstall.sh "$(GITEAPC_PREFIX)"
|
||||
@ ./uninstall.sh "$(PREFIX)"
|
||||
|
||||
.PHONY: configure build install uninstall
|
||||
|
|
Loading…
Reference in a new issue