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
|
|
|
|
2004-10-08 13:16:08 +05:30
|
|
|
srcdir=$(top_srcdir)/console-tools
|
2006-03-02 04:24:48 +05:30
|
|
|
objdir=$(top_builddir)/console-tools
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-01-15 19:34:57 +05:30
|
|
|
CONSOLETOOLS-$(CONFIG_CHVT) += chvt.o
|
2006-03-02 04:24:48 +05:30
|
|
|
CONSOLETOOLS-$(CONFIG_CLEAR) += clear.o
|
2006-01-15 19:34:57 +05:30
|
|
|
CONSOLETOOLS-$(CONFIG_DEALLOCVT) += deallocvt.o
|
2006-03-02 04:24:48 +05:30
|
|
|
CONSOLETOOLS-$(CONFIG_DUMPKMAP) += dumpkmap.o
|
2006-01-15 19:34:57 +05:30
|
|
|
CONSOLETOOLS-$(CONFIG_SETCONSOLE) += setconsole.o
|
2006-03-02 04:24:48 +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
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-03-02 04:24:48 +05:30
|
|
|
|
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-02 04:24:48 +05:30
|
|
|
console-tools_OBJ:= $(patsubst %,$(objdir)/%,$(CONSOLETOOLS-y))
|
2002-04-12 17:35:57 +05:30
|
|
|
|