blob: 4abd6cdb0cd586d89a82a08ad9d0129d8470d08b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--- evilwm-1.4.3.orig/Makefile 2024-03-09 11:20:46.000000000 +0100
+++ evilwm-1.4.3/Makefile 2025-04-12 11:03:24.427876287 +0200
@@ -83,10 +83,10 @@ OPT_CPPFLAGS += -DNDEBUG # disable asse
# Build tools
# Change this if you don't use gcc:
-CC = gcc
+CC ?= gcc
# Override if desired:
-CFLAGS = -Os
+CFLAGS ?= -Os
WARN = -Wall -W -Wstrict-prototypes -Wpointer-arith -Wcast-align \
-Wshadow -Waggregate-return -Wnested-externs -Winline -Wwrite-strings \
-Wundef -Wsign-compare -Wmissing-prototypes -Wredundant-decls
@@ -100,7 +100,7 @@ WARN = -Wall -W -Wstrict-prototypes -Wpo
#EXEEXT = .exe
INSTALL = install
-STRIP = strip
+STRIP ?= strip
INSTALL_DIR = $(INSTALL) -d -m 0755
INSTALL_FILE = $(INSTALL) -m 0644
INSTALL_PROGRAM = $(INSTALL) -m 0755
|