blob: e7a3bbed5df0708881c914d70d54d9a05f2ebd1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- config.mk 2007-07-29 14:09:34.000000000 +0200
+++ config.mk.new 2009-04-10 21:02:50.000000000 +0200
@@ -3,15 +3,14 @@
SONAME = libacpi.so.${SOVERSION}
# customize below to fit your system
-PREFIX = /usr/local
+PREFIX = /usr/
MANPREFIX = ${PREFIX}/share/man
# flags
-SOFLAGS = -shared -Wl,-soname,${SONAME}
-CFLAGS += -fPIC -g --pedantic -Wall -Wextra
+SOFLAGS = $(LDFLAGS) -shared -Wl,-soname,${SONAME}
+CFLAGS += -fPIC
# Compiler and linker
-CC = cc
LD = ${CC}
AR = ar cr
RANLIB = ranlib
|