mdadm/Makefile

181 lines
5.8 KiB
Makefile
Raw Normal View History

2001-06-08 04:36:23 +02:00
#
2002-03-08 01:03:52 +01:00
# mdadm - manage Linux "md" devices aka RAID arrays.
2001-06-08 04:36:23 +02:00
#
2002-03-07 00:17:40 +01:00
# Copyright (C) 2001-2002 Neil Brown <neilb@cse.unsw.edu.au>
2001-06-08 04:36:23 +02:00
#
#
# 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
#
# Author: Neil Brown
# Email: <neilb@cse.unsw.edu.au>
# Paper: Neil Brown
# School of Computer Science and Engineering
# The University of New South Wales
# Sydney, 2052
# Australia
#
2002-05-10 06:06:19 +02:00
# define "CXFLAGS" to give extra flags to CC.
# e.g. make CXFLAGS=-O to optimise
2003-02-12 01:17:26 +01:00
TCC = tcc
2004-08-11 04:16:01 +02:00
UCLIBC_GCC = $(shell for nm in i386-uclibc-linux-gcc i386-uclibc-gcc; do which $$nm > /dev/null && { echo $$nm ; exit; } ; done; echo false No uclibc found )
2004-11-01 05:49:34 +01:00
DIET_GCC = diet gcc
LDLIBS=-lssl
2004-11-01 05:49:34 +01:00
KLIBC=/home/src/klibc/klibc-0.77
KLIBC_GCC = gcc -nostdinc -iwithprefix include -I$(KLIBC)/klibc/include -I$(KLIBC)/linux/include -I$(KLIBC)/klibc/arch/i386/include -I$(KLIBC)/klibc/include/bits32
2003-02-12 01:17:26 +01:00
CC = $(CROSS_COMPILE)gcc
2002-05-10 06:06:19 +02:00
CXFLAGS = -ggdb
2003-07-29 01:59:00 +02:00
CWFLAGS = -Wall -Werror -Wstrict-prototypes
ifdef DEBIAN
CPPFLAGS= -DDEBIAN
else
CPPFLAGS=
endif
2002-03-20 23:39:50 +01:00
SYSCONFDIR = /etc
CONFFILE = $(SYSCONFDIR)/mdadm.conf
2003-07-29 01:59:00 +02:00
MAILCMD =/usr/sbin/sendmail -t
CFLAGS = $(CWFLAGS) $(STATIC) $(CPPFLAGS) -DCONFFILE=\"$(CONFFILE)\" $(CXFLAGS) -DSendmail=\""$(MAILCMD)"\"
2002-03-20 23:39:50 +01:00
# If you want a static binary, you might uncomment these
# LDFLAGS = -static
# STRIP = -s
2001-06-08 04:36:23 +02:00
2002-03-07 00:17:40 +01:00
INSTALL = /usr/bin/install
2002-04-06 00:00:28 +02:00
DESTDIR =
2002-03-08 01:03:52 +01:00
BINDIR = /sbin
2002-04-06 00:00:28 +02:00
MANDIR = /usr/share/man
MAN4DIR = $(MANDIR)/man4
MAN5DIR = $(MANDIR)/man5
MAN8DIR = $(MANDIR)/man8
2002-03-07 00:17:40 +01:00
2004-11-01 05:49:34 +01:00
OBJS = mdadm.o config.o mdstat.o ReadMe.o util.o Manage.o Assemble.o Build.o \
Create.o Detail.o Examine.o Grow.o Monitor.o dlink.o Kill.o Query.o \
mdopen.o super0.o super1.o bitmap.o restripe.o sysfs.o
2004-11-01 05:49:34 +01:00
SRCS = mdadm.c config.c mdstat.c ReadMe.c util.c Manage.c Assemble.c Build.c \
Create.c Detail.c Examine.c Grow.c Monitor.c dlink.c Kill.c Query.c \
mdopen.c super0.c super1.c bitmap.c restripe.c sysfs.c
STATICOBJS = SHA1.o sha1.o
ASSEMBLE_SRCS := mdassemble.c Assemble.c config.c dlink.c util.c super0.c super1.c
ASSEMBLE_FLAGS:= $(CFLAGS) -DMDASSEMBLE
2004-11-01 05:49:34 +01:00
ifdef MDASSEMBLE_AUTO
ASSEMBLE_SRCS += mdopen.c mdstat.c
ASSEMBLE_FLAGS += -DMDASSEMBLE_AUTO
2004-11-01 05:49:34 +01:00
endif
2002-03-07 00:17:40 +01:00
2002-03-15 06:21:36 +01:00
all : mdadm mdadm.man md.man mdadm.conf.man
2001-06-08 04:36:23 +02:00
everything: all mdadm.static mdadm.uclibc swap_super test_stripe mdassemble mdassemble.uclibc mdassemble.static mdassemble.man
# mdadm.tcc doesn't work..
2003-02-12 01:17:26 +01:00
mdadm : rmconf $(OBJS)
$(CC) $(LDFLAGS) -o mdadm $(OBJS) $(LDLIBS)
2001-06-08 04:36:23 +02:00
mdadm.static : STATIC=-DSTATIC
mdadm.static : rmconf $(OBJS) $(STATICOBJS)
$(CC) $(LDFLAGS) -DSTATIC -static -o mdadm.static $(OBJS) $(STATICOBJS)
rmconf:
rm -f config.o
2003-02-12 01:17:26 +01:00
mdadm.tcc : $(SRCS) mdadm.h
$(TCC) -o mdadm.tcc $(SRCS)
mdadm.uclibc : $(SRCS) mdadm.h
$(UCLIBC_GCC) -DUCLIBC -DHAVE_STDINT_H -o mdadm.uclibc $(SRCS) SHA1.c sha1.c
2003-02-12 01:17:26 +01:00
2003-03-03 00:11:38 +01:00
mdadm.klibc : $(SRCS) mdadm.h
rm -f $(OBJS)
gcc -nostdinc -iwithprefix include -I$(KLIBC)/klibc/include -I$(KLIBC)/linux/include -I$(KLIBC)/klibc/arch/i386/include -I$(KLIBC)/klibc/include/bits32 $(CFLAGS) $(SRCS)
test_stripe : restripe.c mdadm.h
$(CC) $(CXFLAGS) $(LDFLAGS) -o test_stripe -DMAIN restripe.c
2004-11-01 05:49:34 +01:00
mdassemble : $(ASSEMBLE_SRCS) mdadm.h
2004-01-22 03:10:29 +01:00
rm -f $(OBJS)
$(DIET_GCC) $(ASSEMBLE_FLAGS) -o mdassemble $(ASSEMBLE_SRCS) SHA1.c sha1.c
2004-01-22 03:10:29 +01:00
2004-11-01 05:49:34 +01:00
mdassemble.static : $(ASSEMBLE_SRCS) mdadm.h
rm -f $(OBJS)
$(CC) $(LDFLAGS) $(ASSEMBLE_FLAGS) -static -DSTATIC -DHAVE_STDINT_H -o mdassemble.static $(ASSEMBLE_SRCS) SHA1.c sha1.c
2004-11-01 05:49:34 +01:00
mdassemble.uclibc : $(ASSEMBLE_SRCS) mdadm.h
rm -f $(OJS)
$(UCLIBC_GCC) $(ASSEMBLE_FLAGS) -DSTATIC -DUCLIBC -DHAVE_STDINT_H -static -o mdassemble.uclibc $(ASSEMBLE_SRCS) SHA1.c sha1.c
2004-01-22 03:10:29 +01:00
2004-11-01 05:49:34 +01:00
# This doesn't work
mdassemble.klibc : $(ASSEMBLE_SRCS) mdadm.h
rm -f $(OBJS)
$(KLIBC_GCC) $(ASSEMBLE_FLAGS) -o mdassemble $(ASSEMBLE_SRCS)
2004-01-22 03:10:29 +01:00
2002-03-08 01:03:52 +01:00
mdadm.man : mdadm.8
nroff -man mdadm.8 > mdadm.man
2002-03-07 00:17:40 +01:00
2002-03-15 06:21:36 +01:00
md.man : md.4
nroff -man md.4 > md.man
mdadm.conf.man : mdadm.conf.5
nroff -man mdadm.conf.5 > mdadm.conf.man
mdassemble.man : mdassemble.8
nroff -man mdassemble.8 > mdassemble.man
$(OBJS) : mdadm.h bitmap.h
2001-06-08 04:36:23 +02:00
sha1.o : sha1.c sha1.h md5.h
$(CC) $(CFLAGS) -DHAVE_STDINT_H -o sha1.o -c sha1.c
SHA1.o : SHA1.c
$(CC) $(CFLAGS) -DHAVE_STDINT_H -o SHA1.o -c SHA1.c
install : mdadm install-man
2002-04-06 00:00:28 +02:00
$(INSTALL) -D $(STRIP) -m 755 mdadm $(DESTDIR)$(BINDIR)/mdadm
install-static : mdadm.static install-man
$(INSTALL) -D $(STRIP) -m 755 mdadm.static $(DESTDIR)$(BINDIR)/mdadm
install-tcc : mdadm.tcc install-man
$(INSTALL) -D $(STRIP) -m 755 mdadm.tcc $(DESTDIR)$(BINDIR)/mdadm
install-uclibc : mdadm.uclibc install-man
$(INSTALL) -D $(STRIP) -m 755 mdadm.uclibc $(DESTDIR)$(BINDIR)/mdadm
install-klibc : mdadm.klibc install-man
$(INSTALL) -D $(STRIP) -m 755 mdadm.klibc $(DESTDIR)$(BINDIR)/mdadm
install-man: mdadm.8 md.4 mdadm.conf.5
2002-04-06 00:00:28 +02:00
$(INSTALL) -D -m 644 mdadm.8 $(DESTDIR)$(MAN8DIR)/mdadm.8
$(INSTALL) -D -m 644 md.4 $(DESTDIR)$(MAN4DIR)/md.4
$(INSTALL) -D -m 644 mdadm.conf.5 $(DESTDIR)$(MAN5DIR)/mdadm.conf.5
2002-03-07 00:17:40 +01:00
2001-06-08 04:36:23 +02:00
clean :
rm -f mdadm $(OBJS) $(STATICOBJS) core *.man mdadm.tcc mdadm.uclibc mdadm.static *.orig *.porig *.rej *.alt \
mdassemble mdassemble.static mdassemble.uclibc mdassemble.klibc swap_super \
init.cpio.gz mdadm.uclibc.static test_stripe
2001-06-08 04:36:23 +02:00
dist : clean
./makedist
2001-06-14 07:33:53 +02:00
testdist : everything clean
./makedist test
2001-06-14 07:33:53 +02:00
TAGS :
etags *.h *.c