aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-04-19 04:26:30 +0000
committerErik Andersen <andersen@codepoet.org>2000-04-19 04:26:30 +0000
commit262dd039ebc152ac0a83ec64c83aad27070499b6 (patch)
tree0f9ec598113b1f97c1fb0fba0a6c4a4ad67cd6d1
parent3fe7f9f20b6562e667ff3c9388a6ce00bd1ba19f (diff)
downloadbusybox-w32-262dd039ebc152ac0a83ec64c83aad27070499b6.tar.gz
busybox-w32-262dd039ebc152ac0a83ec64c83aad27070499b6.tar.bz2
busybox-w32-262dd039ebc152ac0a83ec64c83aad27070499b6.zip
Fix the makefile so docs get built
-Erik
-rw-r--r--Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 90a1a21fd..aaa0eddc4 100644
--- a/Makefile
+++ b/Makefile
@@ -95,18 +95,16 @@ ifdef BB_INIT_SCRIPT
95 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"' 95 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
96endif 96endif
97 97
98all: busybox busybox.links docs 98all: busybox busybox.links
99 99
100busybox: $(OBJECTS) 100busybox: $(OBJECTS)
101 $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES) 101 $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
102 $(STRIP) 102 $(STRIP)
103 $(MAKE) -C docs
103 104
104busybox.links: busybox.def.h 105busybox.links: busybox.def.h
105 - ./busybox.mkll | sort >$@ 106 - ./busybox.mkll | sort >$@
106 107
107docs:
108 $(MAKE) -C docs
109
110regexp.o nfsmount.o: %.o: %.h 108regexp.o nfsmount.o: %.o: %.h
111$(OBJECTS): %.o: busybox.def.h internal.h %.c Makefile 109$(OBJECTS): %.o: busybox.def.h internal.h %.c Makefile
112 110