2002-04-12 12:05:57 +00:00
|
|
|
# Makefile for busybox
|
|
|
|
#
|
2005-09-24 06:01:57 +00:00
|
|
|
# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
|
2002-04-12 12:05:57 +00:00
|
|
|
#
|
2005-09-24 06:01:57 +00:00
|
|
|
# Licensed under the GPL v2, see the file LICENSE in this tarball.
|
2002-04-12 12:05:57 +00:00
|
|
|
|
|
|
|
CONSOLETOOLS_AR:=console-tools.a
|
|
|
|
ifndef $(CONSOLETOOLS_DIR)
|
2004-10-08 07:46:08 +00:00
|
|
|
CONSOLETOOLS_DIR:=$(top_builddir)/console-tools/
|
2002-04-12 12:05:57 +00:00
|
|
|
endif
|
2004-10-08 07:46:08 +00:00
|
|
|
srcdir=$(top_srcdir)/console-tools
|
2002-04-12 12:05:57 +00:00
|
|
|
|
|
|
|
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 18:12:30 +00:00
|
|
|
CONSOLETOOLS_DIR-$(CONFIG_SETCONSOLE) += setconsole.o
|
2002-04-12 12:05:57 +00:00
|
|
|
CONSOLETOOLS_DIR-$(CONFIG_LOADFONT) += loadfont.o
|
|
|
|
CONSOLETOOLS_DIR-$(CONFIG_LOADKMAP) += loadkmap.o
|
2002-09-16 03:16:06 +00:00
|
|
|
CONSOLETOOLS_DIR-$(CONFIG_OPENVT) += openvt.o
|
2002-04-12 12:05:57 +00:00
|
|
|
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 01:09:24 +00:00
|
|
|
$(AR) $(ARFLAGS) $@ $(patsubst %,$(CONSOLETOOLS_DIR)%, $(CONSOLETOOLS_DIR-y))
|
2002-04-12 12:05:57 +00:00
|
|
|
|
2004-10-08 07:46:08 +00:00
|
|
|
$(CONSOLETOOLS_DIR)%.o: $(srcdir)/%.c
|
|
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
|
|
|
|
|