De-fuzzyed some msgs...
[midnight-commander.git] / Make.common.in
blob35a59c15aa3f06c5f152da4bfdddc9c3703639a7
1 VERSION = @VERSION@
3 SHELL = @SHELL@
5 # Installation target directories & other installation stuff
6 prefix = @prefix@
7 exec_prefix = @exec_prefix@
8 binprefix =
9 manprefix =
11 bindir     = @bindir@
12 sysconfdir = @sysconfdir@
13 datadir    = @datadir@
14 libdir     = @libdir@
15 mandir     = @mandir@
16 gnomeicondir = @gnomeicondir@
17 corbadir   = $(sysconfdir)/CORBA/servers
18 mclibdir   = $(libdir)/mc
19 desktopdir = $(mclibdir)/desktop-scripts
20 idldir     = $(prefix)/share/idl
21 suppbindir = $(mclibdir)/bin
22 gnewdir    = $(prefix)/share/mc/templates
23 tidir      = $(mclibdir)/term
24 extfsdir   = $(mclibdir)/extfs
25 confdir    = $(sysconfdir)
26 icondir    = $(datadir)/pixmaps/mc
27 syntaxdir  = $(mclibdir)/syntax
28 localedir  = $(datadir)/locale
29 man1dir    = $(mandir)/man1
30 manext     = 1
31 man8dir    = $(mandir)/man8
32 man8ext    = 8
34 # Tools & program stuff
35 SEDCMD = @SEDCMD@
36 SEDCMD2 = @SEDCMD2@
37 @SET_MAKE@
38 CC = @CC@
39 CPP = @CPP@
40 AR = @AR@
41 RANLIB = @RANLIB@
42 RMF = rm -f
43 MV = mv
44 CP = cp
45 LN_S = @LN_S@
46 AWK = @AWK@
48 # Flags & libs
49 # No way, to make make happy (except GNU), we cannot use := to append
50 # something to these, so that's why there is a leading _
51 XCFLAGS = @CFLAGS@
52 XCPPFLAGS = @CPPFLAGS@ @MCCPPFLAGS@ -I.. -I$(top_srcdir) \
53         -DBINDIR=\""$(bindir)/"\" \
54         -DLIBDIR=\""$(mclibdir)/"\" \
55         -DICONDIR=\""$(icondir)/"\" \
56         -DLOCALEDIR=\""$(localedir)/"\" \
57         -DCONFDIR=\""$(confdir)/"\" \
58         -DDESKTOP_INIT_DIR=\""$(desktopdir)/"\" \
59         @GLIB_CFLAGS@
60 XLDFLAGS = @LDFLAGS@
61 XDEFS = @DEFS@
62 XLIBS = @LIBS@
64 # Where do we have the sources?
65 # You shouldn't have to edit this :)
66 mcsrcdir    = $(top_srcdir)/src
67 docdir      = $(top_srcdir)/doc
68 mcsrclibdir = $(top_srcdir)/lib
69 slangdir    = $(top_srcdir)/slang
70 vfsdir      = $(top_srcdir)/vfs
71 gnomedir    = $(top_srcdir)/gnome
73 # Rules
74 first_rule: all
76 .PHONY: all check cross TAGS clean install uninstall distcopy depend
78 dummy:
80 # Added for compatibility with Automake
81 dvi:
83 installcheck:
85 # End of Make.common