blob: cf7896f3426aaaccac2c438059858146203ede5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /usr/bin/make -f
build:
install:
mkdir -p dest/usr/bin
set -e; for target in $$(cat ../targets); do \
ln -sf "$${target}-gcc-4.7" "dest/usr/bin/$${target}-gcc"; \
ln -sf "$${target}-g++-4.7" "dest/usr/bin/$${target}-g++"; \
done
oh-installfiles
|