add support for DESTDIR for packaging

This commit is contained in:
Lephenixnoir 2020-06-01 22:59:35 +02:00
parent ef49aa8da4
commit f79e6d2cc6
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495

View file

@ -7,10 +7,10 @@ target ?= sh-elf
lib := libprof.a lib := libprof.a
header := libprof.h header := libprof.h
prefix := $(shell $(target)-gcc -print-search-dirs | grep install \ PREFIX ?= $(shell $(target)-gcc -print-search-dirs | grep install \
| sed 's/install: //') | sed 's/install: //')
ifeq "$(prefix)" "" ifeq "$(PREFIX)" ""
$(error "Cannot determine compiler install path") $(error "Cannot determine compiler install path")
endif endif
@ -42,5 +42,5 @@ distclean: clean
# Install # Install
install: install:
cp $(lib) $(prefix) cp $(lib) $(DESTDIR)$(PREFIX)
cp $(header) $(prefix)/include cp $(header) $(DESTDIR)$(PREFIX)/include