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