e2fsprogs/MCONFIG.in

145 lines
3.3 KiB
Plaintext
Raw Normal View History

1997-04-26 17:58:21 +04:00
# Beginning of file MCONFIG
SHELL = /bin/sh
prefix = @prefix@
exec_prefix = @exec_prefix@
usr_prefix = @usr_prefix@
bindir = $(exec_prefix)/bin
ubindir = $(usr_prefix)/bin
sbindir = $(exec_prefix)/sbin
usbindir = $(usr_prefix)/sbin
libdir = $(exec_prefix)/lib
ulibdir = $(usr_prefix)/lib
includedir = $(usr_prefix)/include
mandir = $(usr_prefix)/man
man1dir = $(usr_prefix)/man/man1
man8dir = $(usr_prefix)/man/man8
cat1dir = $(usr_prefix)/man/cat1
cat8dir = $(usr_prefix)/man/cat8
@SET_MAKE@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
CC = @CC@
DEFS = @DEFS@
LIBS = @LIBS@
1997-04-26 18:37:06 +04:00
CFLAGS = @CFLAGS@
ALL_CFLAGS = $(CPPFLAGS) $(DEFS) $(WFLAGS) $(CFLAGS) $(XTRA_CFLAGS) \
1997-04-26 17:58:21 +04:00
-I$(top_builddir)/lib -I$(top_srcdir)/lib $(LINUX_INCLUDE)
LDFLAGS = @LDFLAGS@
1997-04-26 18:37:06 +04:00
ALL_LDFLAGS = $(LDFLAGS)
1997-04-26 17:58:21 +04:00
RM = @RM@
LN = @LN@
MV = @MV@
CP = @CP@
CHMOD = @CHMOD@
AR = @AR@
AWK = @AWK@
SED = @SED@
RANLIB = @RANLIB@
STRIP = @STRIP@
LD = $(PURE) @CC@
ARUPD = $(AR) r
1997-04-29 18:28:00 +04:00
#
# Library definitions
#
LIB = $(top_builddir)/lib
LIBSS = $(LIB)/libss@LIB_EXT@
LIBCOM_ERR = $(LIB)/libcom_err@LIB_EXT@
LIBE2P = $(LIB)/libe2p@LIB_EXT@
LIBEXT2FS = $(LIB)/libext2fs@LIB_EXT@
STATIC_LIBSS = $(LIB)/libss@STATIC_LIB_EXT@
STATIC_LIBCOM_ERR = $(LIB)/libcom_err@STATIC_LIB_EXT@
STATIC_LIBE2P = $(LIB)/libe2p@STATIC_LIB_EXT@
STATIC_LIBEXT2FS = $(LIB)/libext2fs@STATIC_LIB_EXT@
PROFILED_LIBSS = $(LIB)/libss@PROFILED_LIB_EXT@
PROFILED_LIBCOM_ERR = $(LIB)/libcom_err@PROFILED_LIB_EXT@
PROFILED_LIBE2P = $(LIB)/libe2p@PROFILED_LIB_EXT@
PROFILED_LIBEXT2FS = $(LIB)/libext2fs@PROFILED_LIB_EXT@
1997-04-26 17:58:21 +04:00
#
# Use these definitions is you use tools 2.x, x < 16
#
#DLL_BIN=/usr/dll/bin
#JUMP_PREFIX=/usr/dll/jump/
#
# Use these definitions if you use tools 2.16 or above
#
DLL_BIN=/usr/bin
JUMP_PREFIX=/usr/bin/jump
# An include directive pointing to a directory holding enough linux-like
# include files to satisfy some programs here
LINUX_INCLUDE=@LINUX_INCLUDE@
1997-04-29 18:28:00 +04:00
#
# A fast substitution command for fixing up man pages, shell scripts, etc.
#
SUBSTITUTE= $(top_builddir)/lib/substitute_sh
1997-04-26 17:58:21 +04:00
#
# Warning flags
#
# Uncomment WFLAGS if you want really anal GCC warning messages
#
#
@W@WFLAGS= -ansi -D_POSIX_SOURCE -pedantic \
@W@ -Wall -Wwrite-strings -Wpointer-arith \
@W@ -Wcast-qual -Wenum-clash -Wcast-align -Wtraditional \
@W@ -Wstrict-prototypes -Wmissing-prototypes \
@W@ -Wnested-externs -Winline -DNO_INLINE_FUNCS -Wshadow
#
# Installation user and groups
#
BINGRP= bin
BINOWN= bin
BINMODE= 555
INCGRP= bin
INCOWN= bin
INCMODE= 444
LIBOWN= bin
LIBGRP= bin
LIBMODE= 444
MANGRP= bin
MANOWN= bin
MANMODE= 444
all::
#
# Make depend magic...
#
.depend: Makefile $(SRCS) $(top_srcdir)/depfix.sed
if test -n "$(SRCS)" ; then \
1997-04-26 18:37:06 +04:00
$(CC) -M $(ALL_CFLAGS) $(SRCS) | \
1997-04-26 17:58:21 +04:00
sed -f $(top_srcdir)/depfix.sed | \
sed -e 's; $(srcdir)/; $$(srcdir)/;g' | \
sed -e 's; $(top_srcdir)/; $$(top_srcdir)/;g' | \
sed -e 's; $(top_builddir)/; $$(top_builddir)/;g' | \
sed -e 's; \./; ;g' | \
grep -v " \\\\$$" > .depend; \
else :; fi
depend:: .depend
if test -n "$(SRCS)" ; then \
sed -e '/^# +++ Dependency line eater +++/,$$d' \
< $(srcdir)/Makefile.in | cat - .depend \
> $(srcdir)/Makefile.in.new; \
$(MV) $(srcdir)/Makefile.in $(srcdir)/Makefile.in.old; \
$(MV) $(srcdir)/Makefile.in.new $(srcdir)/Makefile.in; \
else :; fi
# End of file MCONFIG