make install, second half

This commit is contained in:
Philippe Teuwen
2019-08-30 22:29:01 +02:00
parent 7e579f9fca
commit 742b62502e
2 changed files with 55 additions and 0 deletions

View File

@@ -12,6 +12,8 @@ GZIP = gzip
MKDIR = mkdir -p
RM = rm -f
RMDIR = rm -rf
# rmdir only if dir is empty, tolerate failure
RMDIR_SOFT = -rmdir
MV = mv
TOUCH = touch
FALSE = false
@@ -25,10 +27,12 @@ LD = g++
PATHSEP=/
PREFIX ?= /usr/local
UDEV_PREFIX ?= /etc/udev/rules.d
INSTALLBINRELPATH = /bin/
INSTALLSHARERELPATH = /share/proxmark3/
INSTALLFWRELPATH = /share/proxmark3/firmware/
INSTALLTOOLSRELPATH = /share/proxmark3/tools/
INSTALLDOCRELPATH = /share/doc/proxmark3/
platform = $(shell uname)
DETECTED_OS=$(platform)