File: Makefile.inc

package info (click to toggle)
libcidr 1.2.3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 956 kB
  • sloc: ansic: 2,800; perl: 333; makefile: 262; sh: 90; awk: 9
file content (29 lines) | stat: -rw-r--r-- 663 bytes parent folder | download
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
# Top-level shared/config bits

# Library naming and versioning
LIB_VERS = 0
SHLIB_NAME = libcidr.so.${LIB_VERS}
SHLIB_LINK = libcidr.so

# Define some destination directories
# Where we think of ourselves as living
PREFIX?=/usr/local
CIDR_LIBDIR?=${PREFIX}/lib
CIDR_BINDIR?=${PREFIX}/bin
CIDR_INCDIR?=${PREFIX}/include
CIDR_MANDIR?=${PREFIX}/man
CIDR_DOCDIR?=${PREFIX}/share/libcidr/docs
CIDR_EXDIR?=${PREFIX}/share/libcidr/examples

# Where we install files to (this allows staging an install elsewhere
# from where it will be run on a system)
DESTDIR?=

# A few programs
ECHO?=echo
MKDIR?=mkdir -pm 755
INSTALL?=install -c
LN?=ln
GZIP?=gzip
RM?=rm -f
SED?=sed