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
|
|
|
|
|
|
|
APPLETS_AR:=applets.a
|
|
|
|
ifndef $(APPLETS_DIR)
|
2004-10-08 07:46:08 +00:00
|
|
|
APPLETS_DIR:=$(top_builddir)/applets/
|
2002-04-12 12:05:57 +00:00
|
|
|
endif
|
2004-10-08 07:46:08 +00:00
|
|
|
srcdir=$(top_srcdir)/applets
|
2002-04-12 12:05:57 +00:00
|
|
|
|
2004-04-06 14:28:35 +00:00
|
|
|
APPLET_SRC:=applets.c busybox.c
|
2002-04-12 12:05:57 +00:00
|
|
|
APPLET_OBJ:= $(patsubst %.c,$(APPLETS_DIR)%.o, $(APPLET_SRC))
|
|
|
|
|
|
|
|
libraries-y+=$(APPLETS_DIR)$(APPLETS_AR)
|
|
|
|
|
|
|
|
$(APPLETS_DIR)$(APPLETS_AR): $(APPLET_OBJ)
|
2005-07-27 01:09:24 +00:00
|
|
|
$(AR) $(ARFLAGS) $@ $(APPLET_OBJ)
|
2002-04-12 12:05:57 +00:00
|
|
|
|
2005-10-05 14:52:21 +00:00
|
|
|
$(APPLET_OBJ): $(top_builddir)/.config
|
2004-10-08 07:46:08 +00:00
|
|
|
$(APPLET_OBJ): $(APPLETS_DIR)%.o: $(srcdir)/%.c
|
|
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
|
|
|
|
|