binutils: allow static linking
[openadk.git] / package / evilwm / patches / patch-Makefile
blob3c24aa64634d78d67a2de36f63e50b339d5185f5
1 --- evilwm-1.1.1.orig/Makefile  2015-07-13 12:19:36.000000000 +0200
2 +++ evilwm-1.1.1/Makefile       2016-11-10 02:38:08.961425099 +0100
3 @@ -17,6 +17,10 @@ desktopfilesdir = $(datarootdir)/applica
4  ############################################################################
5  # Features
6  
7 +XROOT    ?= /usr/X11R6 
8 +OPT_CPPFLAGS += -I$(XROOT)/include 
9 +OPT_LDLIBS += -L$(XROOT)/lib
11  # Uncomment to enable info banner on holding Ctrl+Alt+I.
12  OPT_CPPFLAGS += -DINFOBANNER
14 @@ -71,10 +75,10 @@ OPT_CPPFLAGS += -DVWM
15  # Build tools
17  # Change this if you don't use gcc:
18 -CC = gcc
19 +CC ?= gcc
21  # Override if desired:
22 -CFLAGS = -Os
23 +CFLAGS ?= -Os
24  WARN = -Wall -W -Wstrict-prototypes -Wpointer-arith -Wcast-align \
25         -Wshadow -Waggregate-return -Wnested-externs -Winline -Wwrite-strings \
26         -Wundef -Wsign-compare -Wmissing-prototypes -Wredundant-decls
27 @@ -89,7 +93,7 @@ WARN = -Wall -W -Wstrict-prototypes -Wpo
29  # Override INSTALL_STRIP if you don't want a stripped binary
30  INSTALL = install
31 -INSTALL_STRIP = -s
32 +INSTALL_STRIP =
33  INSTALL_DIR = $(INSTALL) -d -m 0755
34  INSTALL_FILE = $(INSTALL) -m 0644
35  INSTALL_PROGRAM = $(INSTALL) -m 0755 $(INSTALL_STRIP)