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
|
|
|
|
2004-10-08 07:46:08 +00:00
|
|
|
srcdir=$(top_srcdir)/findutils
|
2006-03-01 22:54:48 +00:00
|
|
|
objdir=$(top_builddir)/findutils
|
2002-04-12 12:05:57 +00:00
|
|
|
|
|
|
|
FINDUTILS-$(CONFIG_FIND) += find.o
|
|
|
|
FINDUTILS-$(CONFIG_GREP) += grep.o
|
|
|
|
FINDUTILS-$(CONFIG_XARGS) += xargs.o
|
|
|
|
|
2006-01-15 14:04:57 +00:00
|
|
|
FINDUTILS_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(FINDUTILS-y))
|
|
|
|
FINDUTILS_SRC-a:=$(wildcard $(srcdir)/*.c)
|
|
|
|
APPLET_SRC-y+=$(FINDUTILS_SRC-y)
|
|
|
|
APPLET_SRC-a+=$(FINDUTILS_SRC-a)
|
|
|
|
|
2006-03-01 22:54:48 +00:00
|
|
|
findutils_OBJ:= $(patsubst %,$(objdir)/%,$(FINDUTILS-y))
|
2002-04-12 12:05:57 +00:00
|
|
|
|