1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 16:07:46 +02:00
toxic/cfg/checks/x11.mk

18 lines
705 B
Makefile
Raw Normal View History

2014-09-04 00:19:32 +02:00
# Variables for X11 support
X11_LIBS = x11
2014-09-23 03:51:55 +02:00
X11_CFLAGS = -DX11
X11_OBJ = x11focus.o
2014-09-04 00:19:32 +02:00
# Check if we can build X11 support
2015-07-14 07:27:07 +02:00
CHECK_X11_LIBS = $(shell $(PKG_CONFIG) --exists $(X11_LIBS) || echo -n "error")
2014-09-04 00:19:32 +02:00
ifneq ($(CHECK_X11_LIBS), error)
2015-03-16 13:16:03 +01:00
LIBS += $(X11_LIBS)
CFLAGS += $(X11_CFLAGS)
OBJ += $(X11_OBJ)
else ifneq ($(MAKECMDGOALS), clean)
2015-07-14 07:27:07 +02:00
MISSING_X11_LIBS = $(shell for lib in $(X11_LIBS) ; do if ! $(PKG_CONFIG) --exists $$lib ; then echo $$lib ; fi ; done)
2015-03-16 13:16:03 +01:00
$(warning WARNING -- Toxic will be compiled without x11 support (needed for focus tracking and drag&drop support))
$(warning WARNING -- You need these libraries for x11 support)
$(warning WARNING -- $(MISSING_X11_LIBS))
2014-09-04 00:19:32 +02:00
endif