mirror of
https://github.com/davatorium/rofi.git
synced 2025-03-10 17:06:37 -04:00
Check dependencies
This commit is contained in:
parent
0996cf6e5f
commit
5d9a5c1c5d
1 changed files with 13 additions and 1 deletions
14
Makefile
14
Makefile
|
@ -1,8 +1,20 @@
|
|||
CFLAGS?=-Wall -Os
|
||||
LDADD?=`pkg-config --cflags --libs x11 xinerama xft`
|
||||
PREFIX?=$(DESTDIR)/usr
|
||||
BINDIR?=$(PREFIX)/bin
|
||||
|
||||
# Check deps.
|
||||
|
||||
PKG_CONFIG?=$(shell which pkg-config)
|
||||
ifeq (${PKG_CONFIG},${EMPTY})
|
||||
$(error Failed to find pkg-config. Please install pkg-config)
|
||||
endif
|
||||
|
||||
LDADD?=$(shell ${PKG_CONFIG} --cflags --libs x11 xinerama xft)
|
||||
|
||||
ifeq (${LDADD},${EMPTY})
|
||||
$(error Failed to find the required dependencies: x11, xinerama, xft)
|
||||
endif
|
||||
|
||||
all: normal
|
||||
|
||||
normal:
|
||||
|
|
Loading…
Add table
Reference in a new issue