mirror of
https://git.planet-casio.com/Lephenixnoir/sh-elf-gcc.git
synced 2024-12-28 04:23:39 +01:00
6cbd8270ca
* Try to check dependencies with pacman or apt * Download and extract archives (supporting gzip and xz) * Configure and build GCC and binutils (redirecting output to file, hoping that everything goes well) * Clean up uneeded files after building * Check for conflicting builds of sh-elf-gcc in the PATH * Offer to update the profile to set the PATH at login
18 lines
304 B
Makefile
18 lines
304 B
Makefile
# fxsdk: version=1
|
|
|
|
binutils_version=2.35.1
|
|
gcc_version=10.2.0
|
|
|
|
configure:
|
|
@ ./configure.sh $(binutils_version) $(gcc_version)
|
|
|
|
build:
|
|
@ ./build.sh $(binutils_version) $(gcc_version)
|
|
|
|
install:
|
|
@ ./install.sh $(CURDIR)
|
|
|
|
uninstall:
|
|
@ ./uninstall.sh $(CURDIR)
|
|
|
|
.PHONY: configure build install uninstall
|