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