diff options
Diffstat (limited to 'build')
-rwxr-xr-x | build | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ +#! /usr/bin/make -f + +PKGS = busybox + +$(PKGS): busybox.buildstamp + +.SILENT: busybox.buildstamp +busybox.buildstamp: + cd src && \ + make -j $${JOBS:-1} && \ + make CONFIG_PREFIX=$$(pwd)/../dest install + oh-strip -g /bin/busybox + chmod u+s dest/bin/busybox + oh-installfiles $(PKGS) + oh-installdocs busybox + oh-gencontrol $(PKGS) + oh-buildopk $(PKGS) + touch busybox.buildstamp |