From e93abcf709858603d8123418309e4ad784c56416 Mon Sep 17 00:00:00 2001 From: tanyaionova Date: Wed, 26 Jun 2019 15:25:31 +0300 Subject: [PATCH] Set CP in Makefile $(CP) is not set by GNU Make Seems like [1] is a full list of what GNU Make defines implicitly [1] https://www.gnu.org/software/make/manual/html_node/Implicit-Variables.html --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index c9d6af38..a2d22dd5 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,7 @@ MANPREFIX ?= $(PREFIX)/share/man STRIP ?= strip PKG_CONFIG ?= pkg-config INSTALL ?= install +CP ?= cp CFLAGS_OPTIMIZATION ?= -O3