aboutsummaryrefslogtreecommitdiff
path: root/util-linux/Makefile.in
blob: 8cd5f1bd04035e429f92eaf8790dee34c46f0712 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Makefile for busybox
#
# Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#

UTILLINUX_AR:=util-linux.a
ifndef $(UTILLINUX_DIR)
UTILLINUX_DIR:=$(TOPDIR)util-linux/
endif

UTILLINUX-:=
UTILLINUX-$(CONFIG_DMESG)		+= dmesg.o
UTILLINUX-$(CONFIG_FBSET)		+= fbset.o
UTILLINUX-$(CONFIG_FDFLUSH)		+= fdflush.o
UTILLINUX-$(CONFIG_FDFORMAT)		+= fdformat.o
UTILLINUX-$(CONFIG_FDISK)               += fdisk.o
UTILLINUX-$(CONFIG_FREERAMDISK)	+= freeramdisk.o
UTILLINUX-$(CONFIG_FSCK_MINIX)	+= fsck_minix.o
UTILLINUX-$(CONFIG_GETOPT)		+= getopt.o
UTILLINUX-$(CONFIG_HEXDUMP)		+= hexdump.o
UTILLINUX-$(CONFIG_HWCLOCK)		+= hwclock.o
UTILLINUX-$(CONFIG_LOSETUP)		+= losetup.o
UTILLINUX-$(CONFIG_MKFS_MINIX)	+= mkfs_minix.o
UTILLINUX-$(CONFIG_MKSWAP)		+= mkswap.o
UTILLINUX-$(CONFIG_MORE)		+= more.o
UTILLINUX-$(CONFIG_MOUNT)		+= mount.o
UTILLINUX-$(CONFIG_NFSMOUNT)		+= nfsmount.o
UTILLINUX-$(CONFIG_PIVOT_ROOT)	+= pivot_root.o
UTILLINUX-$(CONFIG_RDATE)		+= rdate.o
UTILLINUX-$(CONFIG_SWAPONOFF)		+= swaponoff.o
UTILLINUX-$(CONFIG_UMOUNT)		+= umount.o

libraries-y+=$(UTILLINUX_DIR)$(UTILLINUX_AR)

$(UTILLINUX_DIR)$(UTILLINUX_AR): $(patsubst %,$(UTILLINUX_DIR)%, $(UTILLINUX-y))
	$(AR) -ro $@ $(patsubst %,$(UTILLINUX_DIR)%, $(UTILLINUX-y))