Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 1 | # Makefile for busybox |
| 2 | # |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3 | # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 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 | |
| 20 | MISCUTILS_AR:=miscutils.a |
| 21 | ifndef $(MISCUTILS_DIR) |
| 22 | MISCUTILS_DIR:=$(TOPDIR)miscutils/ |
| 23 | endif |
| 24 | |
| 25 | |
| 26 | MISCUTILS-y:= |
| 27 | MISCUTILS-$(CONFIG_ADJTIMEX) += adjtimex.o |
Eric Andersen | f6f7bfb | 2002-10-22 12:24:59 +0000 | [diff] [blame] | 28 | MISCUTILS-$(CONFIG_CROND) += crond.o |
| 29 | MISCUTILS-$(CONFIG_CRONTAB) += crontab.o |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 30 | MISCUTILS-$(CONFIG_DC) += dc.o |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 31 | MISCUTILS-$(CONFIG_DEVFSD) += devfsd.o |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 32 | MISCUTILS-$(CONFIG_HDPARM) += hdparm.o |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 33 | MISCUTILS-$(CONFIG_LAST) += last.o |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 34 | MISCUTILS-$(CONFIG_MAKEDEVS) += makedevs.o |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 35 | MISCUTILS-$(CONFIG_MT) += mt.o |
Glenn L McGrath | 8f3bc4c | 2003-12-20 07:30:35 +0000 | [diff] [blame] | 36 | MISCUTILS-$(CONFIG_RX) += rx.o |
Eric Andersen | ef5e8f8 | 2002-11-07 02:09:37 +0000 | [diff] [blame] | 37 | MISCUTILS-$(CONFIG_STRINGS) += strings.o |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 38 | MISCUTILS-$(CONFIG_TIME) += time.o |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 39 | MISCUTILS-$(CONFIG_WATCHDOG) += watchdog.o |
| 40 | |
| 41 | libraries-y+=$(MISCUTILS_DIR)$(MISCUTILS_AR) |
| 42 | |
Eric Andersen | 2053a8c | 2003-10-22 22:29:08 +0000 | [diff] [blame] | 43 | needlibm-y:= |
| 44 | needlibm-$(CONFIG_DC) := y |
| 45 | |
| 46 | ifeq ($(needlibm-y),y) |
| 47 | LIBRARIES += -lm |
| 48 | endif |
| 49 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 50 | $(MISCUTILS_DIR)$(MISCUTILS_AR): $(patsubst %,$(MISCUTILS_DIR)%, $(MISCUTILS-y)) |
| 51 | $(AR) -ro $@ $(patsubst %,$(MISCUTILS_DIR)%, $(MISCUTILS-y)) |
| 52 | |