1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

Use clang if available

This commit is contained in:
QC 2014-02-05 20:42:54 +01:00
parent faab271283
commit 510e56c984

View file

@ -44,6 +44,14 @@ CFLAGS+=-D__QC_MODE__
endif
CLANG=$(shell which clang)
ifneq (${CLANG},${EMPTY})
$(info Using clang compiler: ${CLANG})
CC=${CLANG}
endif
##
# Check dependencies
##