-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathlocal.mk.in
51 lines (36 loc) · 1.07 KB
/
local.mk.in
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
#
# config.mk
# local site configuration
#
# @configure_input@
# what are we making?
package := @PROGNAME@
version := @MAJOR_VERSION@.@MINOR_VERSION@.@PATCHLEVEL@
prog := $(package)
build_platform := @PLATFORM@
# programs to use
SHELL := /bin/sh
CC := @CC@
CFLAGS := @CFLAGS@
LDFLAGS := @LDFLAGS@
CPPFLAGS = @CPPFLAGS@ $(inc) @DEFS@
INSTALL := @INSTALL@
INSTALL_DATA := @INSTALL_DATA@
INSTALL_PROGRAM := @INSTALL_PROGRAM@
# filesystem locations
prefix := @prefix@
exec_prefix := @exec_prefix@
bindir := @bindir@
sbindir := @sbindir@
libdir := @libdir@
libexecdir := @libexecdir@
datarootdir := @datarootdir@
mandir := @mandir@
infodir := @infodir@
includedir := @includedir@
oldincludedir := @oldincludedir@
sysconfdir := @sysconfdir@
datadir := @datadir@
localstatedir := @localstatedir@
sharedstatedir := @sharedstatedir@
srcdir := @srcdir@