95a46c5577
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
67 lines
1.7 KiB
Makefile
67 lines
1.7 KiB
Makefile
# -*-makefile-*- (gpm/include)
|
|
#
|
|
# Copyright (C) 2001-2008 Nico Schottelius <nico-gpm2008 at 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@
|
|
|
|
# autconf wants this, otherwise issues this warning:
|
|
# config.status: WARNING: Makefile.include.in seems to ignore the --datarootdir setting
|
|
datarootdir = @datarootdir@
|
|
|
|
# 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
|
|
MKDIR_P = @MKDIR_P@
|
|
CC = @CC@
|
|
CFLAGS = -Wall -Wextra -Werror -pipe @CFLAGS@
|
|
MAKEDEPEND = $(CC) -M $(CPPFLAGS) -o $*.d $<
|
|
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
|
|
RM = rm
|
|
release = @release@
|