/
githubmirror
/
efivar
Обзор
Документация
Войти
/
githubmirror
/
efivar
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
39
src/include/deprecated.mk
52 строки
1 KB
Peter Jones
Make CC_FOR_BUILD and CCLD_FOR_BUILD override HOSTCC/HOSTCCLD
11 окт 2019, 23:26
11 окт 2019, 23:26
53e10dd
Код
Авторство
О чём код?
# # This is all stuff pjones should not have done the way he did initially, and # it's deprecated and will eventually go away. # ifneq ($(origin prefix),undefined) ifeq ($(origin PREFIX),undefined) override PREFIX = $(prefix) endif endif ifneq ($(origin exec_prefix),undefined) ifeq ($(origin EXEC_PREFIX),undefined) override EXEC_PREFIX = $(exec_prefix) endif endif ifneq ($(origin libdir),undefined) ifeq ($(origin LIBDIR),undefined) override LIBDIR = $(libdir) endif endif ifneq ($(origin datadir),undefined) ifeq ($(origin DATADIR),undefined) override DATADIR = $(datadir) endif endif ifneq ($(origin mandir),undefined) ifeq ($(origin MANDIR),undefined) override MANDIR = $(mandir) endif endif ifneq ($(origin includedir),undefined) ifeq ($(origin INCLUDEDIR),undefined) override INCLUDEDIR = $(includedir) endif endif ifneq ($(origin bindir),undefined) ifeq ($(origin BINDIR),undefined) override BINDIR = $(bindir) endif endif ifneq ($(origin CC_FOR_BUILD),undefined) ifeq ($(origin HOSTCC),file) override HOSTCC = $(CC_FOR_BUILD) endif endif ifneq ($(origin CCLD_FOR_BUILD),undefined) ifeq ($(origin HOSTCCLD),file) override HOSTCCLD = $(CCLD_FOR_BUILD) endif endif # vim:ft=make