diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-04-19 04:26:30 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-04-19 04:26:30 +0000 |
commit | 783ff4a8b85312ef2131f08a6d587e84892ad29a (patch) | |
tree | 0f9ec598113b1f97c1fb0fba0a6c4a4ad67cd6d1 | |
parent | afa0daf9235b7ce101110ec3859b6a95b23e21a5 (diff) | |
download | busybox-w32-783ff4a8b85312ef2131f08a6d587e84892ad29a.tar.gz busybox-w32-783ff4a8b85312ef2131f08a6d587e84892ad29a.tar.bz2 busybox-w32-783ff4a8b85312ef2131f08a6d587e84892ad29a.zip |
Fix the makefile so docs get built
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@484 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -95,18 +95,16 @@ ifdef BB_INIT_SCRIPT | |||
95 | CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"' | 95 | CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"' |
96 | endif | 96 | endif |
97 | 97 | ||
98 | all: busybox busybox.links docs | 98 | all: busybox busybox.links |
99 | 99 | ||
100 | busybox: $(OBJECTS) | 100 | busybox: $(OBJECTS) |
101 | $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES) | 101 | $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES) |
102 | $(STRIP) | 102 | $(STRIP) |
103 | $(MAKE) -C docs | ||
103 | 104 | ||
104 | busybox.links: busybox.def.h | 105 | busybox.links: busybox.def.h |
105 | - ./busybox.mkll | sort >$@ | 106 | - ./busybox.mkll | sort >$@ |
106 | 107 | ||
107 | docs: | ||
108 | $(MAKE) -C docs | ||
109 | |||
110 | regexp.o nfsmount.o: %.o: %.h | 108 | regexp.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 | ||