aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 76e50227e..5713cdc68 100644
--- a/Makefile
+++ b/Makefile
@@ -270,11 +270,11 @@ CFLAGS += $(CFLAGS_EXTRA)
270 270
271all: applet_source_list busybox busybox.links doc 271all: applet_source_list busybox busybox.links doc
272 272
273sh_link: 273sh.c:
274 @if [ ! -L sh.c ] ; then ln -s lash.c sh.c ; fi 274 @if [ ! -L sh.c ] ; then ln -s lash.c sh.c ; fi
275 275
276applet_source_list: sh_link busybox.sh Config.h 276applet_source_list: sh.c busybox.sh Config.h
277 (echo -n "APPLET_SOURCES := "; $(SHELL) $(filter-out sh_link, $^) $(BB_SRC_DIR)) > $@ 277 (echo -n "APPLET_SOURCES := "; $(SHELL) $(filter-out sh.c, $^) $(BB_SRC_DIR)) > $@
278 278
279doc: olddoc 279doc: olddoc
280 280
@@ -430,6 +430,6 @@ dist release: distclean doc
430 \ 430 \
431 tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/; 431 tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
432 432
433.PHONY: tags sh_link 433.PHONY: tags
434tags: 434tags:
435 ctags -R . 435 ctags -R .