diff options
author | Eric Andersen | 1999-11-12 08:03:23 +0000 |
---|---|---|
committer | Eric Andersen | 1999-11-12 08:03:23 +0000 |
commit | eded54bd96ed0394844f9ba23c5ab54dff8a917f (patch) | |
tree | 2f6b89cb42fe3b05b64da415dccb773d06ad9d76 /Makefile | |
parent | 96bcfd346b436aef16b29d9157b80fd4148b1421 (diff) | |
download | busybox-eded54bd96ed0394844f9ba23c5ab54dff8a917f.zip busybox-eded54bd96ed0394844f9ba23c5ab54dff8a917f.tar.gz |
Adjust install a bit...
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -48,10 +48,9 @@ else endif -ifndef $(prefix) - prefix=`pwd` +ifndef $(PREFIX) + PREFIX=`pwd`/busybox_install endif -BINDIR=$(prefix) LIBRARIES= OBJECTS=$(shell ./busybox.sh) @@ -69,6 +68,7 @@ busybox.links: clean: - rm -f $(PROG) busybox.links *~ *.o core + - rm -rf busybox_install distclean: clean - rm -f $(PROG) @@ -77,8 +77,8 @@ force: $(OBJECTS): busybox.def.h internal.h Makefile -install: $(PROG) - install.sh $(BINDIR) +install: busybox + install.sh $(PREFIX) whichversion: @echo $(VERSION) |