diff options
author | Rob Landley <rob@landley.net> | 2006-07-06 20:02:47 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-07-06 20:02:47 +0000 |
commit | 9ebd1bd46838586e9ebfd4dd190494e6226458d9 (patch) | |
tree | dedb5389e2ee6ded03c875ca65861736e321a9af | |
parent | e3324502a505168c399eede556114ecd886b8db7 (diff) |
Attempt to address Shaun Jackman's problem adding "busybox: busybox.bflt" to
.config.mak.
-rw-r--r-- | libbb/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libbb/Makefile b/libbb/Makefile index 98b144c10..336398641 100644 --- a/libbb/Makefile +++ b/libbb/Makefile @@ -12,6 +12,12 @@ top_builddir=.. endif srcdir=$(top_srcdir)/libbb LIBBB_DIR:=./ + +# Ensure "all" is still the default target when make is run by itself in +# libbb, even if the files we include define rules for targets. + +all: + include $(top_srcdir)/Rules.mak include $(top_builddir)/.config include Makefile.in |