aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 8d9c06ede..239f3cf02 100644
--- a/Makefile
+++ b/Makefile
@@ -289,7 +289,7 @@ docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
289 289
290 290
291busybox: $(PWD_LIB) $(OBJECTS) 291busybox: $(PWD_LIB) $(OBJECTS)
292 $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES) 292 $(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(LIBRARIES) $(PWD_LIB)
293 $(STRIP) 293 $(STRIP)
294 294
295# Without VPATH, rule expands to "/bin/sh busybox.mkll Config.h applets.h" 295# Without VPATH, rule expands to "/bin/sh busybox.mkll Config.h applets.h"
@@ -306,8 +306,8 @@ $(PWD_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile
306 - mkdir -p $(PWD_GRP) 306 - mkdir -p $(PWD_GRP)
307 $(CC) $(CFLAGS) $(PWD_CFLAGS) -c $< -o $*.o 307 $(CC) $(CFLAGS) $(PWD_CFLAGS) -c $< -o $*.o
308 308
309$(PWD_LIB): $(PWD_OBJS) 309libpwd.a: $(PWD_OBJS)
310 $(AR) $(ARFLAGS) $(PWD_LIB) $^ 310 $(AR) $(ARFLAGS) $@ $^
311 311
312usage.o: usage.h 312usage.o: usage.h
313 313
@@ -326,7 +326,7 @@ clean:
326 - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \ 326 - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
327 docs/busybox.pdf docs/busybox.lineo.com/busybox.html 327 docs/busybox.pdf docs/busybox.lineo.com/busybox.html
328 - rm -f multibuild.log Config.h.orig 328 - rm -f multibuild.log Config.h.orig
329 - rm -rf docs/busybox _install $(PWD_LIB) 329 - rm -rf docs/busybox _install libpwd.a
330 - rm -f busybox.links loop.h *~ slist.mk core applet_source_list 330 - rm -f busybox.links loop.h *~ slist.mk core applet_source_list
331 - find -name \*.o -exec rm -f {} \; 331 - find -name \*.o -exec rm -f {} \;
332 332