mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-04-28 11:43:56 +00:00
Don't hardcode install paths. Instead of hardcoding where binaries are installed, add variables that installer can override. Tracked-On: #4864 Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com> Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
9 lines
207 B
Makefile
9 lines
207 B
Makefile
DESTDIR ?=
|
|
prefix ?= /usr
|
|
bindir ?= $(prefix)/bin
|
|
libdir ?= $(prefix)/lib64
|
|
nonarchlibdir ?= $(prefix)/lib
|
|
datadir ?= $(prefix)/share
|
|
includedir ?= $(prefix)/include
|
|
systemd_unitdir ?= $(prefix)/lib/systemd
|