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
This commit is contained in:
tanyaionova 2019-06-26 15:25:31 +03:00
parent a3019418b1
commit e93abcf709

View file

@ -5,6 +5,7 @@ MANPREFIX ?= $(PREFIX)/share/man
STRIP ?= strip STRIP ?= strip
PKG_CONFIG ?= pkg-config PKG_CONFIG ?= pkg-config
INSTALL ?= install INSTALL ?= install
CP ?= cp
CFLAGS_OPTIMIZATION ?= -O3 CFLAGS_OPTIMIZATION ?= -O3