aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-11-12 08:03:23 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-11-12 08:03:23 +0000
commit2bb12300fc0f69d66e2d1e85348573863128619d (patch)
tree2f6b89cb42fe3b05b64da415dccb773d06ad9d76 /Makefile
parent163eab929fb7058904f9d241fbdc4550dd8b7fd3 (diff)
downloadbusybox-w32-2bb12300fc0f69d66e2d1e85348573863128619d.tar.gz
busybox-w32-2bb12300fc0f69d66e2d1e85348573863128619d.tar.bz2
busybox-w32-2bb12300fc0f69d66e2d1e85348573863128619d.zip
Adjust install a bit...
git-svn-id: svn://busybox.net/trunk/busybox@98 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index ddf356f19..678f19ea3 100644
--- a/Makefile
+++ b/Makefile
@@ -48,10 +48,9 @@ else
48 48
49endif 49endif
50 50
51ifndef $(prefix) 51ifndef $(PREFIX)
52 prefix=`pwd` 52 PREFIX=`pwd`/busybox_install
53endif 53endif
54BINDIR=$(prefix)
55 54
56LIBRARIES= 55LIBRARIES=
57OBJECTS=$(shell ./busybox.sh) 56OBJECTS=$(shell ./busybox.sh)
@@ -69,6 +68,7 @@ busybox.links:
69 68
70clean: 69clean:
71 - rm -f $(PROG) busybox.links *~ *.o core 70 - rm -f $(PROG) busybox.links *~ *.o core
71 - rm -rf busybox_install
72 72
73distclean: clean 73distclean: clean
74 - rm -f $(PROG) 74 - rm -f $(PROG)
@@ -77,8 +77,8 @@ force:
77 77
78$(OBJECTS): busybox.def.h internal.h Makefile 78$(OBJECTS): busybox.def.h internal.h Makefile
79 79
80install: $(PROG) 80install: busybox
81 install.sh $(BINDIR) 81 install.sh $(PREFIX)
82 82
83whichversion: 83whichversion:
84 @echo $(VERSION) 84 @echo $(VERSION)