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-09 14:33:37 +05:30
|
|
|
srcdir:=$(top_srcdir)/applets
|
|
|
|
objdir:=$(top_builddir)/applets
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-03-02 04:24:48 +05:30
|
|
|
APPLETS_SRC:= $(patsubst %,$(srcdir)/%,applets.c busybox.c version.c)
|
2006-01-15 19:34:57 +05:30
|
|
|
|
2006-03-02 04:24:48 +05:30
|
|
|
APPLET_SRC-y+=$(APPLETS_SRC)
|
|
|
|
APPLET_SRC-a+=$(APPLETS_SRC)
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-03-02 04:24:48 +05:30
|
|
|
applets_OBJ:=$(patsubst $(srcdir)/%.c,$(objdir)/%.o,$(APPLETS_SRC))
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-03-09 14:33:37 +05:30
|
|
|
$(applets_OBJ): $(objdir)/%.o: $(srcdir)/%.c
|
|
|
|
$(objdir)/applets.a: $(applets_OBJ)
|
|
|
|
libraries-y:=$(libraries-y) $(objdir)/applets.a
|
|
|
|
|