2002-04-12 17:35:57 +05:30
|
|
|
# Makefile for busybox
|
|
|
|
#
|
2005-09-24 11:31:57 +05:30
|
|
|
# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
|
2002-04-12 17:35:57 +05:30
|
|
|
#
|
2005-09-24 11:31:57 +05:30
|
|
|
# Licensed under the GPL v2, see the file LICENSE in this tarball.
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-03-14 00:34:00 +05:30
|
|
|
CONSOLETOOLS_AR:=console-tools.a
|
|
|
|
ifndef $(CONSOLETOOLS_DIR)
|
|
|
|
CONSOLETOOLS_DIR:=$(top_builddir)/console-tools/
|
|
|
|
endif
|
|
|
|
srcdir=$(top_srcdir)/console-tools
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-03-14 00:34:00 +05:30
|
|
|
CONSOLETOOLS-y:=
|
2006-01-15 19:34:57 +05:30
|
|
|
CONSOLETOOLS-$(CONFIG_CHVT) += chvt.o
|
2006-03-14 00:34:00 +05:30
|
|
|
CONSOLETOOLS-$(CONFIG_CLEAR) += clear.o
|
2006-01-15 19:34:57 +05:30
|
|
|
CONSOLETOOLS-$(CONFIG_DEALLOCVT) += deallocvt.o
|
2006-03-14 00:34:00 +05:30
|
|
|
CONSOLETOOLS-$(CONFIG_DUMPKMAP) += dumpkmap.o
|
2006-01-15 19:34:57 +05:30
|
|
|
CONSOLETOOLS-$(CONFIG_SETCONSOLE) += setconsole.o
|
2006-03-14 00:34:00 +05:30
|
|
|
CONSOLETOOLS-$(CONFIG_LOADFONT) += loadfont.o
|
|
|
|
CONSOLETOOLS-$(CONFIG_LOADKMAP) += loadkmap.o
|
|
|
|
CONSOLETOOLS-$(CONFIG_OPENVT) += openvt.o
|
|
|
|
CONSOLETOOLS-$(CONFIG_RESET) += reset.o
|
2006-01-15 19:34:57 +05:30
|
|
|
CONSOLETOOLS-$(CONFIG_SETKEYCODES) += setkeycodes.o
|
2006-03-28 04:53:43 +05:30
|
|
|
CONSOLETOOLS-$(CONFIG_SETLOGCONS) += setlogcons.o
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-03-14 00:34:00 +05:30
|
|
|
ifneq ($(strip $(CONSOLETOOLS-y)),)
|
|
|
|
libraries-y+=$(CONSOLETOOLS_DIR)$(CONSOLETOOLS_AR)
|
|
|
|
endif
|
2006-01-15 19:34:57 +05:30
|
|
|
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)
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-03-14 00:34:00 +05:30
|
|
|
$(CONSOLETOOLS_DIR)$(CONSOLETOOLS_AR): $(patsubst %,$(CONSOLETOOLS_DIR)%, $(CONSOLETOOLS-y))
|
|
|
|
$(do_ar)
|
2006-03-09 14:33:37 +05:30
|
|
|
|
2006-03-14 00:34:00 +05:30
|
|
|
$(CONSOLETOOLS_DIR)%.o: $(srcdir)/%.c
|
|
|
|
$(compile.c)
|