summaryrefslogtreecommitdiff
path: root/sysutils/dmidecode/files/patch-Makefile
blob: 7a0d99e3a553c9c6c1245b76cecb982a0adbadc4 (plain) (blame)
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
--- Makefile.orig	2010-10-11 10:08:16.000000000 -0400
+++ Makefile	2011-03-18 12:55:54.000000000 -0400
@@ -12,30 +12,30 @@
 #   (at your option) any later version.
 #
 
-CC      = gcc
-CFLAGS  = -W -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual \
-          -Wcast-align -Wwrite-strings -Wmissing-prototypes -Winline -Wundef
+CFLAGS+=	-W -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual \
+		-Wcast-align -Wwrite-strings -Wmissing-prototypes -Winline -Wundef
+CFLAGS+=	${CPPFLAGS}
 #CFLAGS += -DBIGENDIAN
 #CFLAGS += -DALIGNMENT_WORKAROUND
 
 # When debugging, disable -O2 and enable -g.
-CFLAGS += -O2
+#CFLAGS += -O2
 #CFLAGS += -g
 
 # Pass linker flags here
-LDFLAGS =
+LDFLAGS+= $(CFLAGS)
 
 DESTDIR =
-prefix  = /usr/local
+prefix  = $(PREFIX)
 sbindir = $(prefix)/sbin
-mandir  = $(prefix)/share/man
+mandir  = $(MANPREFIX)/man
 man8dir = $(mandir)/man8
-docdir  = $(prefix)/share/doc/dmidecode
+docdir  = $(DOCSDIR)
 
 INSTALL         := install
-INSTALL_DATA    := $(INSTALL) -m 644
+INSTALL_DATA    := $(BSD_INSTALL_DATA)
 INSTALL_DIR     := $(INSTALL) -m 755 -d
-INSTALL_PROGRAM := $(INSTALL) -m 755
+INSTALL_PROGRAM := $(BSD_INSTALL_PROGRAM)
 RM              := rm -f
 
 # BSD make provides $MACHINE, but GNU make doesn't