summaryrefslogtreecommitdiff
path: root/config.mk
blob: 882e2e90b95e61de77daa8f7498a0ec2a9c4333d (plain)
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
# Note: In the default version of this file, commented out values
#       indicate what the GNU standards dictate, when our values
#       differ.  We're not a GNU package.

ifeq ($(origin topsrcdir),undefined)
topsrcdir := $(patsubst %/,%,$(dir $(lastword $(MAKEFILE_LIST))))
topoutdir := $(topsrcdir)

# In case .srcversion-libretools.mk hasn't been generated yet.
LIBRETOOLS_VERSION ?= 0

PACKAGE = libretools
VERSION = $(LIBRETOOLS_VERSION)

DESTDIR =

#prefix      = /usr/local
prefix      = /usr
exec_prefix = $(prefix)
bindir      = $(exec_prefix)/bin
#libexecdir  = $(exec_prefix)/libexec
libexecdir  = $(exec_prefix)/lib

datarootdir = $(prefix)/share
datadir     = $(datarootdir)
#sysconfdir  = $(prefix)/etc
sysconfdir  = /etc

mandir = $(datarootdir)/man

devtoolsdir = $(call abspath,$(topsrcdir)/../devtools-par)
RONNFLAGS = --manual='libretools Manual' --organization='Parabola'

TESTENVFLAGS ?=

.LIBPATTERNS ?=

endif