diff options
author | Bernhard Reutner-Fischer | 2006-01-15 14:04:57 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2006-01-15 14:04:57 +0000 |
commit | 7ca61b6f3379bf66b446617b8834d92c13b366dd (patch) | |
tree | c0aaacfeb97a9bc74e73f8ff36ecbf1fd173808b /console-tools/Makefile.in | |
parent | 8c9daa12dcb4c1aa8f0f475896c9cfbcfb38370d (diff) | |
download | busybox-7ca61b6f3379bf66b446617b8834d92c13b366dd.zip busybox-7ca61b6f3379bf66b446617b8834d92c13b366dd.tar.gz |
- shared libbusybox.
- IMA compilation option (aka IPO, IPA,..)
Please holler if i broke something..
Diffstat (limited to 'console-tools/Makefile.in')
-rw-r--r-- | console-tools/Makefile.in | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/console-tools/Makefile.in b/console-tools/Makefile.in index 46cf524..87858cd 100644 --- a/console-tools/Makefile.in +++ b/console-tools/Makefile.in @@ -10,22 +10,26 @@ CONSOLETOOLS_DIR:=$(top_builddir)/console-tools/ endif srcdir=$(top_srcdir)/console-tools -CONSOLETOOLS_DIR-y:= -CONSOLETOOLS_DIR-$(CONFIG_CHVT) += chvt.o -CONSOLETOOLS_DIR-$(CONFIG_CLEAR) += clear.o -CONSOLETOOLS_DIR-$(CONFIG_DEALLOCVT) += deallocvt.o -CONSOLETOOLS_DIR-$(CONFIG_DUMPKMAP) += dumpkmap.o -CONSOLETOOLS_DIR-$(CONFIG_SETCONSOLE) += setconsole.o -CONSOLETOOLS_DIR-$(CONFIG_LOADFONT) += loadfont.o -CONSOLETOOLS_DIR-$(CONFIG_LOADKMAP) += loadkmap.o -CONSOLETOOLS_DIR-$(CONFIG_OPENVT) += openvt.o -CONSOLETOOLS_DIR-$(CONFIG_RESET) += reset.o -CONSOLETOOLS_DIR-$(CONFIG_SETKEYCODES) += setkeycodes.o +CONSOLETOOLS-y:= +CONSOLETOOLS-$(CONFIG_CHVT) += chvt.o +CONSOLETOOLS-$(CONFIG_CLEAR) += clear.o +CONSOLETOOLS-$(CONFIG_DEALLOCVT) += deallocvt.o +CONSOLETOOLS-$(CONFIG_DUMPKMAP) += dumpkmap.o +CONSOLETOOLS-$(CONFIG_SETCONSOLE) += setconsole.o +CONSOLETOOLS-$(CONFIG_LOADFONT) += loadfont.o +CONSOLETOOLS-$(CONFIG_LOADKMAP) += loadkmap.o +CONSOLETOOLS-$(CONFIG_OPENVT) += openvt.o +CONSOLETOOLS-$(CONFIG_RESET) += reset.o +CONSOLETOOLS-$(CONFIG_SETKEYCODES) += setkeycodes.o libraries-y+=$(CONSOLETOOLS_DIR)$(CONSOLETOOLS_AR) +CONSOLETOOLS_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(CONSOLETOOLS-y)) +CONSOLETOOLS_SRC-a:=$(wildcard $(srcdir)/*.c) +APPLET_SRC-y+=$(CONSOLETOOLS_SRC-y) +APPLET_SRC-a+=$(CONSOLETOOLS_SRC-a) -$(CONSOLETOOLS_DIR)$(CONSOLETOOLS_AR): $(patsubst %,$(CONSOLETOOLS_DIR)%, $(CONSOLETOOLS_DIR-y)) - $(AR) $(ARFLAGS) $@ $(patsubst %,$(CONSOLETOOLS_DIR)%, $(CONSOLETOOLS_DIR-y)) +$(CONSOLETOOLS_DIR)$(CONSOLETOOLS_AR): $(patsubst %,$(CONSOLETOOLS_DIR)%, $(CONSOLETOOLS-y)) + $(AR) $(ARFLAGS) $@ $(patsubst %,$(CONSOLETOOLS_DIR)%, $(CONSOLETOOLS-y)) $(CONSOLETOOLS_DIR)%.o: $(srcdir)/%.c $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $< |