blob: a75affce151aca55d0544727624a8c9cf1605017 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /usr/bin/make -f
build:
cd src && \
make -j $${JOBS:-1} && \
cd ..
install:
cd src && \
make CONFIG_PREFIX=$$(pwd)/../dest install
#oh-strip
chmod u+s dest/bin/busybox
oh-installfiles
|