Merge pull request #1028 from luukvbaal/makefile

Update haiku Makefile
This commit is contained in:
Piña Colada 2021-05-27 01:04:56 +05:30 committed by GitHub
commit 28731a10f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -57,7 +57,13 @@ ifeq ($(strip $(O_PCRE)),1)
endif
ifeq ($(strip $(O_NOLC)),1)
CPPFLAGS += -DNOLC
ifeq ($(strip $(O_ICONS)),1)
$(info *** Ignoring O_NOLC since O_ICONS is set ***)
else ifeq ($(strip $(O_NERD)),1)
$(info *** Ignoring O_NOLC since O_NERD is set ***)
else
CPPFLAGS += -DNOLC
endif
endif
ifeq ($(strip $(O_NOMOUSE)),1)