Commit de5fe1c2ee87a0f3ce48805f11426c38f86883db

Stefan Sperling 2019-11-26T22:17:43

compile static binaries in PROFILE build

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/Makefile.inc b/Makefile.inc
index 29647c9..3c61ffe 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -21,7 +21,7 @@ BINGRP != id -g -n
 
 .if defined(PROFILE)
 CPPFLAGS += -DPROFILE
-DEBUG = -O0 -pg -g
+DEBUG = -O0 -pg -g -static
 .else
 DEBUG = -O0 -g
 .endif