diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-13 19:04:00 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-13 19:04:00 +0000 |
commit | df10094870c28cc0c6c5577c9aa03b8ede9cb8a6 (patch) | |
tree | 49493696039b285aa751a5bc884fc70c9c85e878 /scripts | |
parent | c5b1d4d6b14f22b5e2f7ae42eb01bf2746b8001c (diff) | |
download | busybox-w32-df10094870c28cc0c6c5577c9aa03b8ede9cb8a6.tar.gz busybox-w32-df10094870c28cc0c6c5577c9aa03b8ede9cb8a6.tar.bz2 busybox-w32-df10094870c28cc0c6c5577c9aa03b8ede9cb8a6.zip |
- revert back to r14406
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/config/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/scripts/config/Makefile b/scripts/config/Makefile index 716e130da..4c966f7a6 100644 --- a/scripts/config/Makefile +++ b/scripts/config/Makefile | |||
@@ -2,12 +2,8 @@ | |||
2 | # | 2 | # |
3 | # Copyright (C) 2002 Erik Andersen <andersen@codepoet.org> | 3 | # Copyright (C) 2002 Erik Andersen <andersen@codepoet.org> |
4 | 4 | ||
5 | ifndef top_srcdir | ||
6 | top_srcdir=../.. | 5 | top_srcdir=../.. |
7 | endif | ||
8 | ifndef top_builddir | ||
9 | top_builddir=../.. | 6 | top_builddir=../.. |
10 | endif | ||
11 | srcdir=$(top_srcdir)/scripts/config | 7 | srcdir=$(top_srcdir)/scripts/config |
12 | include $(top_srcdir)/Rules.mak | 8 | include $(top_srcdir)/Rules.mak |
13 | 9 | ||
@@ -54,10 +50,12 @@ MCONF_OBJS = $(patsubst %.c,%.o, $(MCONF_SRC) $(LXD_SRC)) | |||
54 | SHARED_OBJS = $(patsubst %.c,%.o, $(SHARED_SRC)) | 50 | SHARED_OBJS = $(patsubst %.c,%.o, $(SHARED_SRC)) |
55 | 51 | ||
56 | conf: $(CONF_OBJS) $(SHARED_OBJS) | 52 | conf: $(CONF_OBJS) $(SHARED_OBJS) |
57 | $(do_link.h) | 53 | $(SECHO) " "HOSTCC $@ ; true |
54 | $(Q)$(HOSTCC) $(NATIVE_LDFLAGS) $^ -o $@ | ||
58 | 55 | ||
59 | mconf: $(MCONF_OBJS) $(SHARED_OBJS) | 56 | mconf: $(MCONF_OBJS) $(SHARED_OBJS) |
60 | $(do_link.h) $(LIBS) | 57 | $(SECHO) " "HOSTCC $@ ; true |
58 | $(Q)$(HOSTCC) $(NATIVE_LDFLAGS) $^ -o $@ $(LIBS) | ||
61 | 59 | ||
62 | $(CONF_OBJS): %.o : $(srcdir)/%.c $(SHARED_DEPS) | 60 | $(CONF_OBJS): %.o : $(srcdir)/%.c $(SHARED_DEPS) |
63 | $(compile.h) -I. | 61 | $(compile.h) -I. |