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-14 00:34:00 +05:30
|
|
|
APPLETS_AR:=applets.a
|
|
|
|
ifndef $(APPLETS_DIR)
|
|
|
|
APPLETS_DIR:=$(top_builddir)/applets/
|
|
|
|
endif
|
|
|
|
srcdir=$(top_srcdir)/applets
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-03-14 00:34:00 +05:30
|
|
|
APPLET_SRC:= $(patsubst %,$(srcdir)/%,applets.c busybox.c version.c)
|
|
|
|
APPLET_OBJ:= $(patsubst $(srcdir)/%.c,$(APPLETS_DIR)%.o, $(APPLET_SRC))
|
2006-01-15 19:34:57 +05:30
|
|
|
|
2006-03-14 00:34:00 +05:30
|
|
|
APPLET_SRC-y+=$(APPLET_SRC)
|
|
|
|
APPLET_SRC-a+=$(APPLET_SRC)
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-03-14 00:34:00 +05:30
|
|
|
libraries-y+=$(APPLETS_DIR)$(APPLETS_AR)
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-03-14 00:34:00 +05:30
|
|
|
$(APPLETS_DIR)$(APPLETS_AR): $(APPLET_OBJ)
|
|
|
|
$(do_ar)
|
2006-03-09 14:33:37 +05:30
|
|
|
|
2006-03-14 00:34:00 +05:30
|
|
|
$(APPLET_OBJ): $(top_builddir)/.config
|
|
|
|
$(APPLET_OBJ): $(APPLETS_DIR)%.o: $(srcdir)/%.c
|
|
|
|
$(compile.c)
|