1998-08-27 22:28:22 +04:00
|
|
|
VERSION = @VERSION@
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1999-02-10 01:06:56 +03:00
|
|
|
SHELL = @SHELL@
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
# Installation target directories & other installation stuff
|
|
|
|
prefix = @prefix@
|
1998-08-21 01:58:01 +04:00
|
|
|
exec_prefix = @exec_prefix@
|
1998-02-27 07:54:42 +03:00
|
|
|
binprefix =
|
|
|
|
manprefix =
|
1998-03-25 08:16:00 +03:00
|
|
|
|
1998-08-21 01:58:01 +04:00
|
|
|
bindir = @bindir@
|
1998-12-31 04:18:31 +03:00
|
|
|
sysconfdir = @sysconfdir@
|
1999-03-22 03:01:53 +03:00
|
|
|
datadir = @datadir@
|
|
|
|
libdir = @libdir@
|
|
|
|
mandir = @mandir@
|
|
|
|
mclibdir = $(libdir)/mc
|
|
|
|
suppbindir = $(mclibdir)/bin
|
1999-06-22 23:56:36 +04:00
|
|
|
confdir = $(sysconfdir)
|
1998-03-25 08:16:00 +03:00
|
|
|
localedir = $(datadir)/locale
|
1999-02-04 22:16:01 +03:00
|
|
|
man1dir = $(mandir)/man1
|
1998-03-25 08:16:00 +03:00
|
|
|
manext = 1
|
1999-02-04 22:16:01 +03:00
|
|
|
man8dir = $(mandir)/man8
|
1999-03-22 03:01:53 +03:00
|
|
|
man8ext = 8
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
# Tools & program stuff
|
|
|
|
@SET_MAKE@
|
|
|
|
CC = @CC@
|
|
|
|
CPP = @CPP@
|
|
|
|
AR = @AR@
|
|
|
|
RANLIB = @RANLIB@
|
2000-09-15 00:10:45 +04:00
|
|
|
RMF = rm -f
|
|
|
|
MV = mv
|
2000-09-15 00:29:02 +04:00
|
|
|
CP = cp
|
1998-02-27 07:54:42 +03:00
|
|
|
LN_S = @LN_S@
|
|
|
|
AWK = @AWK@
|
|
|
|
|
|
|
|
# Flags & libs
|
|
|
|
# No way, to make make happy (except GNU), we cannot use := to append
|
|
|
|
# something to these, so that's why there is a leading _
|
|
|
|
XCFLAGS = @CFLAGS@
|
2001-07-20 19:22:50 +04:00
|
|
|
XCPPFLAGS = -I.. @CPPFLAGS@ @MCCPPFLAGS@ @GLIB_CFLAGS@
|
1998-02-27 07:54:42 +03:00
|
|
|
XLDFLAGS = @LDFLAGS@
|
|
|
|
XDEFS = @DEFS@
|
|
|
|
XLIBS = @LIBS@
|
|
|
|
|
|
|
|
# Where do we have the sources?
|
|
|
|
# You shouldn't have to edit this :)
|
2000-09-14 19:12:00 +04:00
|
|
|
mcsrcdir = $(top_srcdir)/src
|
|
|
|
docdir = $(top_srcdir)/doc
|
|
|
|
mcsrclibdir = $(top_srcdir)/lib
|
|
|
|
slangdir = $(top_srcdir)/slang
|
|
|
|
vfsdir = $(top_srcdir)/vfs
|
|
|
|
gnomedir = $(top_srcdir)/gnome
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
# Rules
|
|
|
|
first_rule: all
|
|
|
|
|
2001-05-27 08:34:12 +04:00
|
|
|
.PHONY: all check cross TAGS clean install uninstall distcopy depend
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
dummy:
|
|
|
|
|
2001-05-27 09:53:50 +04:00
|
|
|
# Added for compatibility with Automake
|
2000-09-17 20:29:01 +04:00
|
|
|
dvi:
|
|
|
|
|
2000-09-18 08:57:29 +04:00
|
|
|
installcheck:
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
# End of Make.common
|