]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blob - MCONFIG.in
Miscellaneous cleanup before 1.26-WIP release. Removed unused
[thirdparty/e2fsprogs.git] / MCONFIG.in
1 # Beginning of file MCONFIG
2
3 all::
4
5 check::
6
7 SHELL = /bin/sh
8
9 prefix = @prefix@
10 root_prefix = @root_prefix@
11 exec_prefix = @exec_prefix@
12 root_bindir = $(root_prefix)/bin
13 root_sbindir = $(root_prefix)/sbin
14 root_libdir = $(root_prefix)/lib
15 bindir = @bindir@
16 sbindir = @sbindir@
17 libdir = @libdir@
18 includedir = @includedir@
19 mandir = @mandir@
20 man1dir = $(mandir)/man1
21 man3dir = $(mandir)/man3
22 man8dir = $(mandir)/man8
23 infodir = @infodir@
24 datadir = @datadir@
25
26 @SET_MAKE@
27
28 INSTALL_PROGRAM = @INSTALL_PROGRAM@
29 INSTALL_DATA = @INSTALL_DATA@
30 CC = @CC@
31 BUILD_CC = @BUILD_CC@
32 DEFS = @DEFS@
33 CFLAGS = @CFLAGS@
34 CPPFLAGS = @CPPFLAGS@
35 ALL_CFLAGS = $(CPPFLAGS) $(DEFS) $(USE_WFLAGS) $(CFLAGS) $(XTRA_CFLAGS) \
36 -I$(top_builddir)/lib -I$(top_srcdir)/lib $(LINUX_INCLUDE)
37 LDFLAGS = @LDFLAGS@
38 ALL_LDFLAGS = $(LDFLAGS)
39 RM = @RM@
40 LN = @LN@
41 LN_S = @LN_S@
42 MV = @MV@
43 CP = @CP@
44 CHMOD = @CHMOD@
45 AR = @AR@
46 AWK = @AWK@
47 SED = @SED@
48 PERL = @PERL@
49 RANLIB = @RANLIB@
50 STRIP = @STRIP@
51 LD = $(PURE) @CC@
52 ARUPD = $(AR) r
53 LDCONFIG = @LDCONFIG@
54
55 #
56 # Library definitions
57 #
58 LIB = $(top_builddir)/lib
59 LIBSS = $(LIB)/libss@LIB_EXT@
60 LIBCOM_ERR = $(LIB)/libcom_err@LIB_EXT@
61 LIBE2P = $(LIB)/libe2p@LIB_EXT@
62 LIBEXT2FS = $(LIB)/libext2fs@LIB_EXT@
63 LIBUUID = $(LIB)/libuuid@LIB_EXT@ @SOCKET_LIB@
64 DEPLIBUUID = $(LIB)/libuuid@LIB_EXT@
65
66 STATIC_LIBSS = $(LIB)/libss@STATIC_LIB_EXT@
67 STATIC_LIBCOM_ERR = $(LIB)/libcom_err@STATIC_LIB_EXT@
68 STATIC_LIBE2P = $(LIB)/libe2p@STATIC_LIB_EXT@
69 STATIC_LIBEXT2FS = $(LIB)/libext2fs@STATIC_LIB_EXT@
70 STATIC_LIBUUID = $(LIB)/libuuid@STATIC_LIB_EXT@ @SOCKET_LIB@
71 DEPSTATIC_LIBUUID = $(LIB)/libuuid@STATIC_LIB_EXT@
72
73 PROFILED_LIBSS = $(LIB)/libss@PROFILED_LIB_EXT@
74 PROFILED_LIBCOM_ERR = $(LIB)/libcom_err@PROFILED_LIB_EXT@
75 PROFILED_LIBE2P = $(LIB)/libe2p@PROFILED_LIB_EXT@
76 PROFILED_LIBEXT2FS = $(LIB)/libext2fs@PROFILED_LIB_EXT@
77 PROFILED_LIBUUID = $(LIB)/libuuid@PROFILED_LIB_EXT@ @SOCKET_LIB@
78 DEPPROFILED_LIBUUID = $(LIB)/libuuid@PROFILED_LIB_EXT@
79
80 #
81 # Use these definitions is you use tools 2.x, x < 16
82 #
83 #DLL_BIN=/usr/dll/bin
84 #JUMP_PREFIX=/usr/dll/jump/
85
86 #
87 # Use these definitions if you use tools 2.16 or above
88 #
89 DLL_BIN=/usr/bin
90 JUMP_PREFIX=/usr/bin/jump
91
92 # An include directive pointing to a directory holding enough linux-like
93 # include files to satisfy some programs here
94 LINUX_INCLUDE=@LINUX_INCLUDE@
95
96 #
97 # A fast substitution command for fixing up man pages, shell scripts, etc.
98 #
99 SUBST_CONF=$(top_builddir)/util/subst.conf
100 SUBSTITUTE= $(top_builddir)/util/subst -f $(SUBST_CONF)
101 DEP_SUBSTITUTE= $(top_builddir)/util/subst $(SUBST_CONF)
102
103 $(top_builddir)/util/subst:
104 cd $(top_builddir)/util ; $(MAKE) subst
105
106 #
107 # Warning flags
108 #
109 # Run make gcc-wall to do a build with warning messages.
110 #
111 #
112 WFLAGS= -ansi -D_POSIX_SOURCE -pedantic \
113 -Wall -Wwrite-strings -Wpointer-arith \
114 -Wcast-qual -Wcast-align -Wtraditional \
115 -Wstrict-prototypes -Wmissing-prototypes \
116 -Wnested-externs -Winline -DNO_INLINE_FUNCS -Wshadow
117
118 gcc-wall-new:
119 (make USE_WFLAGS="$(WFLAGS)" > /dev/null) 2>&1 | sed -f $(top_srcdir)/util/gcc-wall-cleanup
120
121 gcc-wall:
122 make clean > /dev/null
123 make gcc-wall-new
124
125 #
126 # Installation user and groups
127 #
128 BINGRP= bin
129 BINOWN= bin
130 BINMODE= 555
131 INCGRP= bin
132 INCOWN= bin
133 INCMODE= 444
134 LIBOWN= bin
135 LIBGRP= bin
136 LIBMODE= 444
137 MANGRP= bin
138 MANOWN= bin
139 MANMODE= 444
140
141 #
142 # Autoconf magic...
143 #
144
145 DEP_LIB_MAKEFILES = $(top_srcdir)/lib/Makefile.elf-lib \
146 $(top_srcdir)/lib/Makefile.dll-lib $(top_srcdir)/lib/Makefile.bsd-lib \
147 $(top_srcdir)/lib/Makefile.checker $(top_srcdir)/lib/Makefile.profile
148
149 $(top_builddir)/config.status: $(top_srcdir)/configure
150 cd $(top_builddir); ./config.status --recheck
151
152 $(top_builddir)/MCONFIG: $(top_srcdir)/MCONFIG.in $(top_builddir)/config.status
153 cd $(top_builddir); CONFIG_FILES=MCONFIG ./config.status
154
155 $(top_builddir)/lib/substitute_sh: $(top_srcdir)/lib/substitute_sh.in \
156 $(top_builddir)/config.status
157 cd $(top_builddir); CONFIG_FILES=lib/substitute_sh ./config.status
158
159 $(top_builddir)/util/subst.conf: $(top_srcdir)/util/subst.conf.in \
160 $(top_builddir)/config.status
161 cd $(top_builddir); CONFIG_FILES=util/subst.conf ./config.status
162
163 Makefile: $(srcdir)/Makefile.in $(top_builddir)/MCONFIG \
164 $(DEP_MAKEFILE) $(top_builddir)/config.status
165 cd $(top_builddir); CONFIG_FILES=$(my_dir)/Makefile ./config.status
166
167 $(top_srcdir)/configure: $(top_srcdir)/configure.in
168 cd $(top_srcdir) && autoconf
169
170 #
171 # Make depend magic...
172 #
173
174 .depend: Makefile $(SRCS) $(top_srcdir)/depfix.sed $(top_srcdir)/wordwrap.pl
175 if test -n "$(SRCS)" ; then \
176 $(CC) -M $(ALL_CFLAGS) $(SRCS) | \
177 $(SED) -f $(top_srcdir)/depfix.sed \
178 -e 's; $(srcdir)/; $$(srcdir)/;g' \
179 -e 's; $(top_srcdir)/; $$(top_srcdir)/;g' \
180 -e 's; $(top_builddir)/; $$(top_builddir)/;g' \
181 -e 's; \./; ;g' \
182 -e '/^ *\\$$/d' | \
183 $(PERL) $(top_srcdir)/wordwrap.pl > .depend; \
184 else :; fi
185
186 depend:: .depend
187 if test -n "$(SRCS)" ; then \
188 sed -e '/^# +++ Dependency line eater +++/,$$d' \
189 < $(srcdir)/Makefile.in | cat - .depend \
190 > $(srcdir)/Makefile.in.new; \
191 if cmp -s $(srcdir)/Makefile.in $(srcdir)/Makefile.in.new ; then \
192 $(RM) $(srcdir)/Makefile.in.new ; \
193 else \
194 $(MV) $(srcdir)/Makefile.in $(srcdir)/Makefile.in.old; \
195 $(MV) $(srcdir)/Makefile.in.new $(srcdir)/Makefile.in; \
196 fi ; else :; fi
197
198 # End of file MCONFIG