mc/Make.common.in

86 lines
1.9 KiB
Plaintext
Raw Normal View History

VERSION = @VERSION@
1998-02-27 07:54:42 +03:00
SHELL = @SHELL@
1998-02-27 07:54:42 +03:00
# Installation target directories & other installation stuff
prefix = @prefix@
exec_prefix = @exec_prefix@
1998-02-27 07:54:42 +03:00
binprefix =
manprefix =
bindir = @bindir@
1998-12-31 04:18:31 +03:00
sysconfdir = @sysconfdir@
datadir = @datadir@
libdir = @libdir@
mandir = @mandir@
gnomeicondir = @gnomeicondir@
1998-12-31 04:18:31 +03:00
corbadir = $(sysconfdir)/CORBA/servers
mclibdir = $(libdir)/mc
desktopdir = $(mclibdir)/desktop-scripts
idldir = $(prefix)/share/idl
suppbindir = $(mclibdir)/bin
gnewdir = $(prefix)/share/mc/templates
tidir = $(mclibdir)/term
extfsdir = $(mclibdir)/extfs
confdir = $(sysconfdir)
icondir = $(datadir)/pixmaps/mc
syntaxdir = $(mclibdir)/syntax
localedir = $(datadir)/locale
1999-02-04 22:16:01 +03:00
man1dir = $(mandir)/man1
manext = 1
1999-02-04 22:16:01 +03:00
man8dir = $(mandir)/man8
man8ext = 8
1998-02-27 07:54:42 +03:00
# Tools & program stuff
SEDCMD = @SEDCMD@
SEDCMD2 = @SEDCMD2@
@SET_MAKE@
CC = @CC@
CPP = @CPP@
AR = @AR@
RANLIB = @RANLIB@
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@
XCPPFLAGS = @CPPFLAGS@ @MCCPPFLAGS@ -I.. -I$(top_srcdir) \
-DBINDIR=\""$(bindir)/"\" \
-DLIBDIR=\""$(mclibdir)/"\" \
-DICONDIR=\""$(icondir)/"\" \
-DLOCALEDIR=\""$(localedir)/"\" \
-DCONFDIR=\""$(confdir)/"\" \
-DDESKTOP_INIT_DIR=\""$(desktopdir)/"\" \
@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 :)
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
.PHONY: all check cross TAGS clean install uninstall distcopy depend
1998-02-27 07:54:42 +03:00
dummy:
# Added for compatibility with Automake
dvi:
installcheck:
1998-02-27 07:54:42 +03:00
# End of Make.common