File: Makefile.include.in

package info (click to toggle)
gpm 1.20.4-3.1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 4,460 kB
  • ctags: 1,458
  • sloc: ansic: 9,447; yacc: 1,055; sh: 1,052; makefile: 428; cpp: 241; lisp: 222; awk: 79; sed: 6
file content (67 lines) | stat: -rw-r--r-- 1,632 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#			-*-makefile-*- (gpm/include)
#
# Copyright (C) 2001 Nico Schottelius <nico@schottelius.org>
#

# set root, if you want to install to a virtual root
ROOT = 
ifndef ROOT
ROOT = $(DESTDIR)
endif

SHELL = /bin/sh

prefix = @prefix@
exec_prefix = @exec_prefix@

# directories
libdir      = $(ROOT)@libdir@
datadir     = $(ROOT)@datadir@
bindir      = $(ROOT)@bindir@
sbindir     = $(ROOT)@sbindir@
includedir  = $(ROOT)@includedir@
sysconfdir  = $(ROOT)@sysconfdir@
mandir      = $(ROOT)@mandir@
man1dir     = $(mandir)/man1
man7dir     = $(mandir)/man7
man8dir     = $(mandir)/man8
infodir     = $(ROOT)@infodir@

# it would be nice to figure this out automatically, but the Emacs
# load path often has many elements, most of them reserved for
# specialised packages like w3 and auctex.
lispdir = @lispdir@

# programs
CC                = @CC@
RANLIB            = @RANLIB@
YACC              = @YACC@
INSTALL           = @INSTALL@
INSTALL_PROGRAM   = @INSTALL_PROGRAM@
INSTALL_DATA      = @INSTALL_DATA@
LN_S              = @LN_S@
EMACS             = @EMACS@
ELISP             = @ELISP@
SHLIB             = @SHLIB@
SED               = @SED@
DIFF              = @DIFF@
TEX               = @TEX@
TEXINDEX          = @TEXINDEX@
DVIPS             = @DVIPS@
MAKEINFO          = @MAKEINFO@
TEXI2HTML         = texi2html
STRIP             = -s

AR                = ar
ETAGS             = etags
AWK               = awk
CP                = cp -a
MKDIR             = mkdir -p # linux specific, but who cares ?
                             # gpm is linux specific, too.
RM                = rm


DEPFILE = .depend

# general
release = @release@