blob: eaa043e6126a99f6fcbc25696830ed6bdb005e05 [file] [log] [blame]
Eric Andersen85208e22002-04-12 12:05:57 +00001# Makefile for busybox
2#
3# Copyright (C) 1999-2002 by Erik Andersen <andersee@debian.org>
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18#
19
20APPLETS_AR:=applets.a
21ifndef $(APPLETS_DIR)
22APPLETS_DIR:=$(TOPDIR)applets/
23endif
24
25APPLET_SRC:=applets.c busybox.c usage.c
26APPLET_OBJ:= $(patsubst %.c,$(APPLETS_DIR)%.o, $(APPLET_SRC))
27
Eric Andersena6f6e062002-09-30 20:39:12 +000028
29
Eric Andersen85208e22002-04-12 12:05:57 +000030libraries-y+=$(APPLETS_DIR)$(APPLETS_AR)
31
Eric Andersena6f6e062002-09-30 20:39:12 +000032$(APPLET_OBJ): $(TOPDIR).config
33
Eric Andersen85208e22002-04-12 12:05:57 +000034$(APPLETS_DIR)$(APPLETS_AR): $(APPLET_OBJ)
35 $(AR) -ro $@ $(APPLET_OBJ)
36