]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Makefile
Separate sueprblock handling into separate file
[thirdparty/mdadm.git] / Makefile
1 #
2 # mdadm - manage Linux "md" devices aka RAID arrays.
3 #
4 # Copyright (C) 2001-2002 Neil Brown <neilb@cse.unsw.edu.au>
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
30 # define "CXFLAGS" to give extra flags to CC.
31 # e.g. make CXFLAGS=-O to optimise
32 TCC = tcc
33 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 )
34 DIET_GCC = diet gcc
35
36 KLIBC=/home/src/klibc/klibc-0.77
37
38 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
39
40 CC = gcc
41 CXFLAGS = -ggdb
42 CWFLAGS = -Wall -Werror -Wstrict-prototypes
43 SYSCONFDIR = /etc
44 CONFFILE = $(SYSCONFDIR)/mdadm.conf
45 MAILCMD =/usr/sbin/sendmail -t
46 CFLAGS = $(CWFLAGS) -DCONFFILE=\"$(CONFFILE)\" $(CXFLAGS) -DSendmail=\""$(MAILCMD)"\"
47
48 # If you want a static binary, you might uncomment these
49 # LDFLAGS = -static
50 # STRIP = -s
51
52 INSTALL = /usr/bin/install
53 DESTDIR =
54 BINDIR = /sbin
55 MANDIR = /usr/share/man
56 MAN4DIR = $(MANDIR)/man4
57 MAN5DIR = $(MANDIR)/man5
58 MAN8DIR = $(MANDIR)/man8
59
60 OBJS = mdadm.o config.o mdstat.o ReadMe.o util.o Manage.o Assemble.o Build.o \
61 Create.o Detail.o Examine.o Grow.o Monitor.o dlink.o Kill.o Query.o mdopen.o super0.o
62 SRCS = mdadm.c config.c mdstat.c ReadMe.c util.c Manage.c Assemble.c Build.c \
63 Create.c Detail.c Examine.c Grow.c Monitor.c dlink.c Kill.c Query.c mdopen.c super0.c
64
65 ASSEMBLE_SRCS := mdassemble.c Assemble.c config.c dlink.c util.c
66 ifdef MDASSEMBLE_AUTO
67 ASSEMBLE_SRCS += mdopen.c mdstat.c
68 ASSEMBLE_FLAGS = -DMDASSEMBLE_AUTO
69 endif
70
71 all : mdadm mdadm.man md.man mdadm.conf.man
72
73 everything: all mdadm.static mdadm.tcc mdadm.uclibc
74
75 mdadm : $(OBJS)
76 $(CC) $(LDFLAGS) -o mdadm $^
77
78 mdadm.static : $(OBJS)
79 $(CC) $(LDFLAGS) -static -o mdadm.static $^
80
81 mdadm.tcc : $(SRCS) mdadm.h
82 $(TCC) -o mdadm.tcc $(SRCS)
83
84 mdadm.uclibc : $(SRCS) mdadm.h
85 $(UCLIBC_GCC) -DUCLIBC -o mdadm.uclibc $(SRCS)
86
87 mdadm.klibc : $(SRCS) mdadm.h
88 rm -f $(OBJS)
89 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)
90
91 mdassemble : $(ASSEMBLE_SRCS) mdadm.h
92 rm -f $(OBJS)
93 $(DIET_GCC) $(ASSEMBLE_FLAGS) -o mdassemble $(ASSEMBLE_SRCS)
94
95 mdassemble.static : $(ASSEMBLE_SRCS) mdadm.h
96 rm -f $(OBJS)
97 $(CC) $(LDFLAGS) $(ASSEMBLE_FLAGS) -static -o mdassemble $(ASSEMBLE_SRCS)
98
99 mdassemble.uclibc : $(ASSEMBLE_SRCS) mdadm.h
100 rm -f $(OBJS)
101 $(UCLIBC_GCC) $(ASSEMBLE_FLAGS) -DUCLIBC -static -o mdassemble.uclibc $(ASSEMBLE_SRCS)
102
103 # This doesn't work
104 mdassemble.klibc : $(ASSEMBLE_SRCS) mdadm.h
105 rm -f $(OBJS)
106 $(KLIBC_GCC) $(CFLAGS) $(ASSEMBLE_FLAGS) -o mdassemble $(ASSEMBLE_SRCS)
107
108 mdadm.man : mdadm.8
109 nroff -man mdadm.8 > mdadm.man
110
111 md.man : md.4
112 nroff -man md.4 > md.man
113
114 mdadm.conf.man : mdadm.conf.5
115 nroff -man mdadm.conf.5 > mdadm.conf.man
116
117 $(OBJS) : mdadm.h
118
119 install : mdadm mdadm.8 md.4 mdadm.conf.5
120 $(INSTALL) -D $(STRIP) -m 755 mdadm $(DESTDIR)$(BINDIR)/mdadm
121 $(INSTALL) -D -m 644 mdadm.8 $(DESTDIR)$(MAN8DIR)/mdadm.8
122 $(INSTALL) -D -m 644 md.4 $(DESTDIR)$(MAN4DIR)/md.4
123 $(INSTALL) -D -m 644 mdadm.conf.5 $(DESTDIR)$(MAN5DIR)/mdadm.conf.5
124
125 clean :
126 rm -f mdadm $(OBJS) core *.man mdadm.tcc mdadm.uclibc mdadm.static *.orig *.porig *.rej *.alt \
127 mdassemble mdassemble.static mdassemble.uclibc mdassemble.klibc
128
129 dist : clean
130 ./makedist
131
132 TAGS :
133 etags *.h *.c