]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Makefile
Fix a few issues with the reshape patches.
[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
11a3e71d
NB
43SYSCONFDIR = /etc
44CONFFILE = $(SYSCONFDIR)/mdadm.conf
aa88f531
NB
45MAILCMD =/usr/sbin/sendmail -t
46CFLAGS = $(CWFLAGS) -DCONFFILE=\"$(CONFFILE)\" $(CXFLAGS) -DSendmail=\""$(MAILCMD)"\"
11a3e71d
NB
47
48# If you want a static binary, you might uncomment these
49# LDFLAGS = -static
50# STRIP = -s
64c4757e 51
cd29a5c8 52INSTALL = /usr/bin/install
c913b90e 53DESTDIR =
9a9dab36 54BINDIR = /sbin
c913b90e
NB
55MANDIR = /usr/share/man
56MAN4DIR = $(MANDIR)/man4
57MAN5DIR = $(MANDIR)/man5
58MAN8DIR = $(MANDIR)/man8
cd29a5c8 59
b5e64645 60OBJS = mdadm.o config.o mdstat.o ReadMe.o util.o Manage.o Assemble.o Build.o \
c82f047c 61 Create.o Detail.o Examine.o Grow.o Monitor.o dlink.o Kill.o Query.o \
e86c9dd6 62 mdopen.o super0.o super1.o bitmap.o restripe.o sysfs.o
b5e64645 63SRCS = mdadm.c config.c mdstat.c ReadMe.c util.c Manage.c Assemble.c Build.c \
c82f047c 64 Create.c Detail.c Examine.c Grow.c Monitor.c dlink.c Kill.c Query.c \
e86c9dd6 65 mdopen.c super0.c super1.c bitmap.c restripe.c sysfs.c
4b1ac34b 66
570c0542 67ASSEMBLE_SRCS := mdassemble.c Assemble.c config.c dlink.c util.c super0.c super1.c
c7654afc 68ASSEMBLE_FLAGS:= -DMDASSEMBLE
b5e64645
NB
69ifdef MDASSEMBLE_AUTO
70ASSEMBLE_SRCS += mdopen.c mdstat.c
c7654afc 71ASSEMBLE_FLAGS += -DMDASSEMBLE_AUTO
b5e64645 72endif
cd29a5c8 73
56eb10c0 74all : mdadm mdadm.man md.man mdadm.conf.man
64c4757e 75
e86c9dd6 76everything: all mdadm.static mdadm.uclibc swap_super test_stripe mdassemble mdassemble.uclibc mdassemble.static mdassemble.man
8431b2b2 77# mdadm.tcc doesn't work..
5787fa49 78
9a9dab36 79mdadm : $(OBJS)
11a3e71d 80 $(CC) $(LDFLAGS) -o mdadm $^
64c4757e 81
5787fa49 82mdadm.static : $(OBJS)
b5e64645 83 $(CC) $(LDFLAGS) -static -o mdadm.static $^
5787fa49
NB
84
85mdadm.tcc : $(SRCS) mdadm.h
86 $(TCC) -o mdadm.tcc $(SRCS)
87
88mdadm.uclibc : $(SRCS) mdadm.h
89 $(UCLIBC_GCC) -DUCLIBC -o mdadm.uclibc $(SRCS)
90
d013a55e
NB
91mdadm.klibc : $(SRCS) mdadm.h
92 rm -f $(OBJS)
93 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)
94
e86c9dd6
NB
95test_stripe : restripe.c mdadm.h
96 $(CC) $(CXFLAGS) $(LDFLAGS) -o test_stripe -DMAIN restripe.c
97
b5e64645 98mdassemble : $(ASSEMBLE_SRCS) mdadm.h
98c6faba 99 rm -f $(OBJS)
b5e64645 100 $(DIET_GCC) $(ASSEMBLE_FLAGS) -o mdassemble $(ASSEMBLE_SRCS)
98c6faba 101
b5e64645
NB
102mdassemble.static : $(ASSEMBLE_SRCS) mdadm.h
103 rm -f $(OBJS)
c06487ce 104 $(CC) $(LDFLAGS) $(ASSEMBLE_FLAGS) -static -o mdassemble.static $(ASSEMBLE_SRCS)
b5e64645
NB
105
106mdassemble.uclibc : $(ASSEMBLE_SRCS) mdadm.h
98c6faba 107 rm -f $(OBJS)
b5e64645 108 $(UCLIBC_GCC) $(ASSEMBLE_FLAGS) -DUCLIBC -static -o mdassemble.uclibc $(ASSEMBLE_SRCS)
98c6faba 109
b5e64645
NB
110# This doesn't work
111mdassemble.klibc : $(ASSEMBLE_SRCS) mdadm.h
112 rm -f $(OBJS)
113 $(KLIBC_GCC) $(CFLAGS) $(ASSEMBLE_FLAGS) -o mdassemble $(ASSEMBLE_SRCS)
98c6faba 114
9a9dab36
NB
115mdadm.man : mdadm.8
116 nroff -man mdadm.8 > mdadm.man
cd29a5c8 117
56eb10c0
NB
118md.man : md.4
119 nroff -man md.4 > md.man
120
121mdadm.conf.man : mdadm.conf.5
122 nroff -man mdadm.conf.5 > mdadm.conf.man
123
ccf44f32
NB
124mdassemble.man : mdassemble.8
125 nroff -man mdassemble.8 > mdassemble.man
126
c82f047c 127$(OBJS) : mdadm.h bitmap.h
64c4757e 128
c913b90e
NB
129install : mdadm mdadm.8 md.4 mdadm.conf.5
130 $(INSTALL) -D $(STRIP) -m 755 mdadm $(DESTDIR)$(BINDIR)/mdadm
131 $(INSTALL) -D -m 644 mdadm.8 $(DESTDIR)$(MAN8DIR)/mdadm.8
132 $(INSTALL) -D -m 644 md.4 $(DESTDIR)$(MAN4DIR)/md.4
133 $(INSTALL) -D -m 644 mdadm.conf.5 $(DESTDIR)$(MAN5DIR)/mdadm.conf.5
cd29a5c8 134
64c4757e 135clean :
b5e64645 136 rm -f mdadm $(OBJS) core *.man mdadm.tcc mdadm.uclibc mdadm.static *.orig *.porig *.rej *.alt \
0ff1a185 137 mdassemble mdassemble.static mdassemble.uclibc mdassemble.klibc swap_super \
f3c7fda6 138 init.cpio.gz mdadm.uclibc.static
64c4757e
NB
139
140dist : clean
141 ./makedist
682c7051 142
1e0d770c
NB
143testdist : everything clean
144 ./makedist test
145
682c7051
NB
146TAGS :
147 etags *.h *.c