Assign 'forced' before the goto to avoid a warning
[oweals/busybox.git] / util-linux / Makefile.in
1 # Makefile for busybox
2 #
3 # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.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
20 UTILLINUX_AR:=util-linux.a
21 ifndef $(UTILLINUX_DIR)
22 UTILLINUX_DIR:=$(TOPDIR)util-linux/
23 endif
24
25 UTILLINUX-:=
26 UTILLINUX-$(CONFIG_DMESG)               +=dmesg.o
27 UTILLINUX-$(CONFIG_FBSET)               +=fbset.o
28 UTILLINUX-$(CONFIG_FDFLUSH)             +=fdflush.o
29 UTILLINUX-$(CONFIG_FDFORMAT)            +=fdformat.o
30 UTILLINUX-$(CONFIG_FDISK)               +=fdisk.o
31 UTILLINUX-$(CONFIG_FREERAMDISK)         +=freeramdisk.o
32 UTILLINUX-$(CONFIG_FSCK_MINIX)          +=fsck_minix.o
33 UTILLINUX-$(CONFIG_GETOPT)              +=getopt.o
34 UTILLINUX-$(CONFIG_HEXDUMP)             +=hexdump.o
35 UTILLINUX-$(CONFIG_HWCLOCK)             +=hwclock.o
36 UTILLINUX-$(CONFIG_LOSETUP)             +=losetup.o
37 UTILLINUX-$(CONFIG_MKFS_MINIX)          +=mkfs_minix.o
38 UTILLINUX-$(CONFIG_MKSWAP)              +=mkswap.o
39 UTILLINUX-$(CONFIG_MORE)                +=more.o
40 UTILLINUX-$(CONFIG_MOUNT)               +=mount.o
41 UTILLINUX-$(CONFIG_NFSMOUNT)            +=nfsmount.o
42 UTILLINUX-$(CONFIG_PIVOT_ROOT)          +=pivot_root.o
43 UTILLINUX-$(CONFIG_RDATE)               +=rdate.o
44 UTILLINUX-$(CONFIG_SWAPONOFF)           +=swaponoff.o
45 UTILLINUX-$(CONFIG_UMOUNT)              +=umount.o
46
47 libraries-y+=$(UTILLINUX_DIR)$(UTILLINUX_AR)
48
49 $(UTILLINUX_DIR)$(UTILLINUX_AR): $(patsubst %,$(UTILLINUX_DIR)%, $(UTILLINUX-y))
50         $(AR) -ro $@ $(patsubst %,$(UTILLINUX_DIR)%, $(UTILLINUX-y))
51
52 ifneq ($(strip $(CONFIG_LFS)),y)
53 ifeq ($(strip $(FDISK_SUPPORT_LARGE_DISKS)),y)
54
55 $(UTILLINUX_DIR)fdisk.o: $(UTILLINUX_DIR)fdisk.c
56         $(CC) $(CFLAGS) \
57                 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 \
58                 $(EXTRA_CFLAGS) -c -o $@ $<
59
60 endif
61 endif
62