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
|
|
|
|
|
|
|
CONSOLETOOLS_AR:=console-tools.a
|
|
|
|
ifndef $(CONSOLETOOLS_DIR)
|
2004-10-08 13:16:08 +05:30
|
|
|
CONSOLETOOLS_DIR:=$(top_builddir)/console-tools/
|
2002-04-12 17:35:57 +05:30
|
|
|
endif
|
2004-10-08 13:16:08 +05:30
|
|
|
srcdir=$(top_srcdir)/console-tools
|
2002-04-12 17:35:57 +05:30
|
|
|
|
|
|
|
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
|
2005-08-01 23:42:30 +05:30
|
|
|
CONSOLETOOLS_DIR-$(CONFIG_SETCONSOLE) += setconsole.o
|
2002-04-12 17:35:57 +05:30
|
|
|
CONSOLETOOLS_DIR-$(CONFIG_LOADFONT) += loadfont.o
|
|
|
|
CONSOLETOOLS_DIR-$(CONFIG_LOADKMAP) += loadkmap.o
|
2002-09-16 08:46:06 +05:30
|
|
|
CONSOLETOOLS_DIR-$(CONFIG_OPENVT) += openvt.o
|
2002-04-12 17:35:57 +05:30
|
|
|
CONSOLETOOLS_DIR-$(CONFIG_RESET) += reset.o
|
|
|
|
CONSOLETOOLS_DIR-$(CONFIG_SETKEYCODES) += setkeycodes.o
|
|
|
|
|
|
|
|
libraries-y+=$(CONSOLETOOLS_DIR)$(CONSOLETOOLS_AR)
|
|
|
|
|
|
|
|
$(CONSOLETOOLS_DIR)$(CONSOLETOOLS_AR): $(patsubst %,$(CONSOLETOOLS_DIR)%, $(CONSOLETOOLS_DIR-y))
|
2005-07-27 06:39:24 +05:30
|
|
|
$(AR) $(ARFLAGS) $@ $(patsubst %,$(CONSOLETOOLS_DIR)%, $(CONSOLETOOLS_DIR-y))
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2004-10-08 13:16:08 +05:30
|
|
|
$(CONSOLETOOLS_DIR)%.o: $(srcdir)/%.c
|
|
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
|
|
|
|
|