]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Makefile
Allow homehost to be set on command line or in config file
[thirdparty/mdadm.git] / Makefile
CommitLineData
64c4757e 1#
9a9dab36 2# mdadm - manage Linux "md" devices aka RAID arrays.
64c4757e 3#
cd29a5c8 4# Copyright (C) 2001-2002 Neil Brown <neilb@cse.unsw.edu.au>
64c4757e
NB
5#
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20#
21# Author: Neil Brown
22# Email: <neilb@cse.unsw.edu.au>
23# Paper: Neil Brown
24# School of Computer Science and Engineering
25# The University of New South Wales
26# Sydney, 2052
27# Australia
28#
29
2d465520
NB
30# define "CXFLAGS" to give extra flags to CC.
31# e.g. make CXFLAGS=-O to optimise
5787fa49 32TCC = tcc
e5329c37 33UCLIBC_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 )
b5e64645
NB
34DIET_GCC = diet gcc
35
36KLIBC=/home/src/klibc/klibc-0.77
37
38KLIBC_GCC = gcc -nostdinc -iwithprefix include -I$(KLIBC)/klibc/include -I$(KLIBC)/linux/include -I$(KLIBC)/klibc/arch/i386/include -I$(KLIBC)/klibc/include/bits32
5787fa49 39
c9fae710 40CC = $(CROSS_COMPILE)gcc
2d465520 41CXFLAGS = -ggdb
aa88f531 42CWFLAGS = -Wall -Werror -Wstrict-prototypes
5bbb4842
NB
43
44ifdef DEBIAN
45CPPFLAGS= -DDEBIAN
46else
47CPPFLAGS=
48endif
49
11a3e71d
NB
50SYSCONFDIR = /etc
51CONFFILE = $(SYSCONFDIR)/mdadm.conf
aa88f531 52MAILCMD =/usr/sbin/sendmail -t
5bbb4842 53CFLAGS = $(CWFLAGS) $(STATIC) $(CPPFLAGS) -DCONFFILE=\"$(CONFFILE)\" $(CXFLAGS) -DSendmail=\""$(MAILCMD)"\"
11a3e71d
NB
54
55# If you want a static binary, you might uncomment these
56# LDFLAGS = -static
57# STRIP = -s
64c4757e 58
cd29a5c8 59INSTALL = /usr/bin/install
c913b90e 60DESTDIR =
9a9dab36 61BINDIR = /sbin
c913b90e
NB
62MANDIR = /usr/share/man
63MAN4DIR = $(MANDIR)/man4
64MAN5DIR = $(MANDIR)/man5
65MAN8DIR = $(MANDIR)/man8
cd29a5c8 66
b5e64645 67OBJS = mdadm.o config.o mdstat.o ReadMe.o util.o Manage.o Assemble.o Build.o \
c82f047c 68 Create.o Detail.o Examine.o Grow.o Monitor.o dlink.o Kill.o Query.o \
e86c9dd6 69 mdopen.o super0.o super1.o bitmap.o restripe.o sysfs.o
b5e64645 70SRCS = mdadm.c config.c mdstat.c ReadMe.c util.c Manage.c Assemble.c Build.c \
c82f047c 71 Create.c Detail.c Examine.c Grow.c Monitor.c dlink.c Kill.c Query.c \
e86c9dd6 72 mdopen.c super0.c super1.c bitmap.c restripe.c sysfs.c
4b1ac34b 73
570c0542 74ASSEMBLE_SRCS := mdassemble.c Assemble.c config.c dlink.c util.c super0.c super1.c
c7654afc 75ASSEMBLE_FLAGS:= -DMDASSEMBLE
b5e64645
NB
76ifdef MDASSEMBLE_AUTO
77ASSEMBLE_SRCS += mdopen.c mdstat.c
c7654afc 78ASSEMBLE_FLAGS += -DMDASSEMBLE_AUTO
b5e64645 79endif
cd29a5c8 80
56eb10c0 81all : mdadm mdadm.man md.man mdadm.conf.man
64c4757e 82
e86c9dd6 83everything: all mdadm.static mdadm.uclibc swap_super test_stripe mdassemble mdassemble.uclibc mdassemble.static mdassemble.man
8431b2b2 84# mdadm.tcc doesn't work..
5787fa49 85
5bbb4842
NB
86mdadm : rmconf $(OBJS)
87 $(CC) $(LDFLAGS) -o mdadm $(OBJS)
64c4757e 88
5bbb4842
NB
89mdadm.static : STATIC=-DSTATIC
90mdadm.static : rmconf $(OBJS)
91 $(CC) $(LDFLAGS) -DSTATIC -static -o mdadm.static $(OBJS)
92rmconf:
93 rm -f config.o
5787fa49
NB
94
95mdadm.tcc : $(SRCS) mdadm.h
96 $(TCC) -o mdadm.tcc $(SRCS)
97
98mdadm.uclibc : $(SRCS) mdadm.h
99 $(UCLIBC_GCC) -DUCLIBC -o mdadm.uclibc $(SRCS)
100
d013a55e
NB
101mdadm.klibc : $(SRCS) mdadm.h
102 rm -f $(OBJS)
103 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)
104
e86c9dd6
NB
105test_stripe : restripe.c mdadm.h
106 $(CC) $(CXFLAGS) $(LDFLAGS) -o test_stripe -DMAIN restripe.c
107
b5e64645 108mdassemble : $(ASSEMBLE_SRCS) mdadm.h
98c6faba 109 rm -f $(OBJS)
b5e64645 110 $(DIET_GCC) $(ASSEMBLE_FLAGS) -o mdassemble $(ASSEMBLE_SRCS)
98c6faba 111
b5e64645
NB
112mdassemble.static : $(ASSEMBLE_SRCS) mdadm.h
113 rm -f $(OBJS)
c06487ce 114 $(CC) $(LDFLAGS) $(ASSEMBLE_FLAGS) -static -o mdassemble.static $(ASSEMBLE_SRCS)
b5e64645
NB
115
116mdassemble.uclibc : $(ASSEMBLE_SRCS) mdadm.h
98c6faba 117 rm -f $(OBJS)
b5e64645 118 $(UCLIBC_GCC) $(ASSEMBLE_FLAGS) -DUCLIBC -static -o mdassemble.uclibc $(ASSEMBLE_SRCS)
98c6faba 119
b5e64645
NB
120# This doesn't work
121mdassemble.klibc : $(ASSEMBLE_SRCS) mdadm.h
122 rm -f $(OBJS)
123 $(KLIBC_GCC) $(CFLAGS) $(ASSEMBLE_FLAGS) -o mdassemble $(ASSEMBLE_SRCS)
98c6faba 124
9a9dab36
NB
125mdadm.man : mdadm.8
126 nroff -man mdadm.8 > mdadm.man
cd29a5c8 127
56eb10c0
NB
128md.man : md.4
129 nroff -man md.4 > md.man
130
131mdadm.conf.man : mdadm.conf.5
132 nroff -man mdadm.conf.5 > mdadm.conf.man
133
ccf44f32
NB
134mdassemble.man : mdassemble.8
135 nroff -man mdassemble.8 > mdassemble.man
136
c82f047c 137$(OBJS) : mdadm.h bitmap.h
64c4757e 138
c913b90e
NB
139install : mdadm mdadm.8 md.4 mdadm.conf.5
140 $(INSTALL) -D $(STRIP) -m 755 mdadm $(DESTDIR)$(BINDIR)/mdadm
141 $(INSTALL) -D -m 644 mdadm.8 $(DESTDIR)$(MAN8DIR)/mdadm.8
142 $(INSTALL) -D -m 644 md.4 $(DESTDIR)$(MAN4DIR)/md.4
143 $(INSTALL) -D -m 644 mdadm.conf.5 $(DESTDIR)$(MAN5DIR)/mdadm.conf.5
cd29a5c8 144
64c4757e 145clean :
b5e64645 146 rm -f mdadm $(OBJS) core *.man mdadm.tcc mdadm.uclibc mdadm.static *.orig *.porig *.rej *.alt \
0ff1a185 147 mdassemble mdassemble.static mdassemble.uclibc mdassemble.klibc swap_super \
39c5a909 148 init.cpio.gz mdadm.uclibc.static test_stripe
64c4757e
NB
149
150dist : clean
151 ./makedist
682c7051 152
1e0d770c
NB
153testdist : everything clean
154 ./makedist test
155
682c7051
NB
156TAGS :
157 etags *.h *.c