mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
For PR739:
Define a DESTDIR variable and use it to define the various install locations. This allows DESTDIR to be overridden on the command line. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32409 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
796cbd87b4
commit
281722dab8
@ -47,15 +47,16 @@ LLVM_SRC_ROOT := $(shell cd @abs_top_srcdir@; $(PWD))
|
||||
LLVM_OBJ_ROOT := $(shell cd @abs_top_builddir@; $(PWD))
|
||||
PROJ_SRC_ROOT := $(shell cd $(LLVM_SRC_ROOT); $(PWD))
|
||||
PROJ_SRC_DIR := $(shell cd $(LLVM_SRC_ROOT)/$(patsubst $(PROJ_OBJ_ROOT)%,%,$(PROJ_OBJ_DIR)); $(PWD))
|
||||
PROJ_prefix := @prefix@
|
||||
PROJ_bindir := @prefix@/bin
|
||||
PROJ_libdir := @prefix@/lib
|
||||
PROJ_datadir := @prefix@/share
|
||||
PROJ_docsdir := @prefix@/docs/llvm
|
||||
PROJ_etcdir := @prefix@/etc/llvm
|
||||
PROJ_includedir := @prefix@/include
|
||||
PROJ_infodir := @prefix@/info
|
||||
PROJ_mandir := @prefix@/man
|
||||
DESTDIR := @prefix@
|
||||
PROJ_prefix := $(DESTDIR)
|
||||
PROJ_bindir := $(DESTDIR)bin
|
||||
PROJ_libdir := $(DESTDIR)lib
|
||||
PROJ_datadir := $(DESTDIR)share
|
||||
PROJ_docsdir := $(DESTDIR)docs/llvm
|
||||
PROJ_etcdir := $(DESTDIR)etc/llvm
|
||||
PROJ_includedir := $(DESTDIR)include
|
||||
PROJ_infodir := $(DESTDIR)info
|
||||
PROJ_mandir := $(DESTDIR)man
|
||||
PROJ_VERSION := $(LLVMVersion)
|
||||
else
|
||||
ifndef PROJ_SRC_ROOT
|
||||
|
Loading…
Reference in New Issue
Block a user