File: config.mk

package info (click to toggle)
libacpi 0.2-7
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,120 kB
  • sloc: ansic: 870; makefile: 83; sh: 19
file content (19 lines) | stat: -rw-r--r-- 452 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
VERSION = 0.2
SOVERSION = 0
SONAME = libacpi.so.${SOVERSION}

# customize below to fit your system
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

# flags
SOFLAGS = -shared -Wl,-soname,${SONAME}
SOFLAGS += `dpkg-buildflags --get LDFLAGS`
CFLAGS += -fPIC -g --pedantic -Wall -Wextra -Wformat-truncation=0
CFLAGS += `dpkg-buildflags --get CFLAGS` `dpkg-buildflags --get CPPFLAGS`

# Compiler and linker
CC = cc
LD = ${CC}
AR = ar cr
RANLIB = ranlib