diff options
author | Rob Landley | 2005-08-13 01:10:27 +0000 |
---|---|---|
committer | Rob Landley | 2005-08-13 01:10:27 +0000 |
commit | be3dae145f71b583f2c975d8dcdc10d9dad2268a (patch) | |
tree | 4bcd50be61a1945e41eabd59d645d398fc038522 /busybox/console-tools | |
parent | 6022fc8723c4bfaf055011db33f69565fa0c82b1 (diff) | |
download | busybox-be3dae145f71b583f2c975d8dcdc10d9dad2268a.zip busybox-be3dae145f71b583f2c975d8dcdc10d9dad2268a.tar.gz |
Makefile related backports:
10945, 10946 Make compile much, much faster.
10923 big makefile change. Nervous.
10946, 10991, 10998, 11003 small makefile fixes.
Diffstat (limited to 'busybox/console-tools')
-rw-r--r-- | busybox/console-tools/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/busybox/console-tools/Makefile.in b/busybox/console-tools/Makefile.in index b19ce5c..23ce373 100644 --- a/busybox/console-tools/Makefile.in +++ b/busybox/console-tools/Makefile.in @@ -37,7 +37,7 @@ CONSOLETOOLS_DIR-$(CONFIG_SETKEYCODES) += setkeycodes.o libraries-y+=$(CONSOLETOOLS_DIR)$(CONSOLETOOLS_AR) $(CONSOLETOOLS_DIR)$(CONSOLETOOLS_AR): $(patsubst %,$(CONSOLETOOLS_DIR)%, $(CONSOLETOOLS_DIR-y)) - $(AR) -ro $@ $(patsubst %,$(CONSOLETOOLS_DIR)%, $(CONSOLETOOLS_DIR-y)) + $(AR) $(ARFLAGS) $@ $(patsubst %,$(CONSOLETOOLS_DIR)%, $(CONSOLETOOLS_DIR-y)) $(CONSOLETOOLS_DIR)%.o: $(srcdir)/%.c $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $< |