]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Makefile
remove ANNOUNCE-2.0-devel-?
[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
NB
61 Create.o Detail.o Examine.o Grow.o Monitor.o dlink.o Kill.o Query.o \
62 mdopen.o super0.o super1.o bitmap.o
b5e64645 63SRCS = mdadm.c config.c mdstat.c ReadMe.c util.c Manage.c Assemble.c Build.c \
c82f047c
NB
64 Create.c Detail.c Examine.c Grow.c Monitor.c dlink.c Kill.c Query.c \
65 mdopen.c super0.c super1.c bitmap.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
ccf44f32 76everything: all mdadm.static mdadm.tcc mdadm.uclibc mdassemble mdassemble.uclibc mdassemble.static mdassemble.man
5787fa49 77
9a9dab36 78mdadm : $(OBJS)
11a3e71d 79 $(CC) $(LDFLAGS) -o mdadm $^
64c4757e 80
5787fa49 81mdadm.static : $(OBJS)
b5e64645 82 $(CC) $(LDFLAGS) -static -o mdadm.static $^
5787fa49
NB
83
84mdadm.tcc : $(SRCS) mdadm.h
85 $(TCC) -o mdadm.tcc $(SRCS)
86
87mdadm.uclibc : $(SRCS) mdadm.h
88 $(UCLIBC_GCC) -DUCLIBC -o mdadm.uclibc $(SRCS)
89
d013a55e
NB
90mdadm.klibc : $(SRCS) mdadm.h
91 rm -f $(OBJS)
92 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)
93
b5e64645 94mdassemble : $(ASSEMBLE_SRCS) mdadm.h
98c6faba 95 rm -f $(OBJS)
b5e64645 96 $(DIET_GCC) $(ASSEMBLE_FLAGS) -o mdassemble $(ASSEMBLE_SRCS)
98c6faba 97
b5e64645
NB
98mdassemble.static : $(ASSEMBLE_SRCS) mdadm.h
99 rm -f $(OBJS)
100 $(CC) $(LDFLAGS) $(ASSEMBLE_FLAGS) -static -o mdassemble $(ASSEMBLE_SRCS)
101
102mdassemble.uclibc : $(ASSEMBLE_SRCS) mdadm.h
98c6faba 103 rm -f $(OBJS)
b5e64645 104 $(UCLIBC_GCC) $(ASSEMBLE_FLAGS) -DUCLIBC -static -o mdassemble.uclibc $(ASSEMBLE_SRCS)
98c6faba 105
b5e64645
NB
106# This doesn't work
107mdassemble.klibc : $(ASSEMBLE_SRCS) mdadm.h
108 rm -f $(OBJS)
109 $(KLIBC_GCC) $(CFLAGS) $(ASSEMBLE_FLAGS) -o mdassemble $(ASSEMBLE_SRCS)
98c6faba 110
9a9dab36
NB
111mdadm.man : mdadm.8
112 nroff -man mdadm.8 > mdadm.man
cd29a5c8 113
56eb10c0
NB
114md.man : md.4
115 nroff -man md.4 > md.man
116
117mdadm.conf.man : mdadm.conf.5
118 nroff -man mdadm.conf.5 > mdadm.conf.man
119
ccf44f32
NB
120mdassemble.man : mdassemble.8
121 nroff -man mdassemble.8 > mdassemble.man
122
c82f047c 123$(OBJS) : mdadm.h bitmap.h
64c4757e 124
c913b90e
NB
125install : mdadm mdadm.8 md.4 mdadm.conf.5
126 $(INSTALL) -D $(STRIP) -m 755 mdadm $(DESTDIR)$(BINDIR)/mdadm
127 $(INSTALL) -D -m 644 mdadm.8 $(DESTDIR)$(MAN8DIR)/mdadm.8
128 $(INSTALL) -D -m 644 md.4 $(DESTDIR)$(MAN4DIR)/md.4
129 $(INSTALL) -D -m 644 mdadm.conf.5 $(DESTDIR)$(MAN5DIR)/mdadm.conf.5
cd29a5c8 130
64c4757e 131clean :
b5e64645
NB
132 rm -f mdadm $(OBJS) core *.man mdadm.tcc mdadm.uclibc mdadm.static *.orig *.porig *.rej *.alt \
133 mdassemble mdassemble.static mdassemble.uclibc mdassemble.klibc
64c4757e
NB
134
135dist : clean
136 ./makedist
682c7051
NB
137
138TAGS :
139 etags *.h *.c