blob: 295732bc495aad75b7bdf96b40b26a58c249aeff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
include ../Makefile.cfg
all:
sh genscripts.sh $(TOOLCHAIN_PREFIX)
clean:
rm -f playstation.x psx-gcc psx-g++
distclean: clean
install: all
mkdir -p $(TOOLCHAIN_PREFIX)/bin
mkdir -p $(TOOLCHAIN_PREFIX)/mipsel-unknown-elf/lib/ldscripts
cp -v psx-gcc $(TOOLCHAIN_PREFIX)/bin
cp -v psx-g++ $(TOOLCHAIN_PREFIX)/bin
cp -v playstation.x $(TOOLCHAIN_PREFIX)/mipsel-unknown-elf/lib/ldscripts
|