Shorted the longest entry.
[midnight-commander.git] / Make.common.in
blob5b261e83eee039f4451480d16515a9579780dd41
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 mclibdir   = $(libdir)/mc
17 suppbindir = $(mclibdir)/bin
18 confdir    = $(sysconfdir)
19 localedir  = $(datadir)/locale
20 man1dir    = $(mandir)/man1
21 manext     = 1
22 man8dir    = $(mandir)/man8
23 man8ext    = 8
25 # Tools & program stuff
26 @SET_MAKE@
27 CC = @CC@
28 CPP = @CPP@
29 AR = @AR@
30 RANLIB = @RANLIB@
31 RMF = rm -f
32 MV = mv
33 CP = cp
34 LN_S = @LN_S@
35 AWK = @AWK@
37 # Flags & libs
38 # No way, to make make happy (except GNU), we cannot use := to append
39 # something to these, so that's why there is a leading _
40 XCFLAGS = @CFLAGS@
41 XCPPFLAGS = -I.. @CPPFLAGS@ @MCCPPFLAGS@ @GLIB_CFLAGS@
42 XLDFLAGS = @LDFLAGS@
43 XDEFS = @DEFS@
44 XLIBS = @LIBS@
46 # Where do we have the sources?
47 # You shouldn't have to edit this :)
48 mcsrcdir    = $(top_srcdir)/src
49 docdir      = $(top_srcdir)/doc
50 mcsrclibdir = $(top_srcdir)/lib
51 slangdir    = $(top_srcdir)/slang
52 vfsdir      = $(top_srcdir)/vfs
53 gnomedir    = $(top_srcdir)/gnome
55 # Rules
56 first_rule: all
58 .PHONY: all check cross TAGS clean install uninstall distcopy depend
60 dummy:
62 # Added for compatibility with Automake
63 dvi:
65 installcheck:
67 # End of Make.common