1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 15:27:45 +02:00
toxic/cfg/checks/sound_notifications.mk

22 lines
911 B
Makefile
Raw Normal View History

# Variables for sound notifications support
SND_NOTIFY_LIBS = openal freealut
2014-09-23 03:51:55 +02:00
SND_NOTIFY_CFLAGS = -DSOUND_NOTIFY
2015-11-04 05:04:05 +01:00
ifneq (, $(findstring audio_device.o, $(OBJ)))
2015-03-16 13:16:03 +01:00
SND_NOTIFY_OBJ =
else
2015-11-04 05:04:05 +01:00
SND_NOTIFY_OBJ = audio_device.o
endif
# Check if we can build sound notifications support
2015-07-14 07:27:07 +02:00
CHECK_SND_NOTIFY_LIBS = $(shell $(PKG_CONFIG) --exists $(SND_NOTIFY_LIBS) || echo -n "error")
ifneq ($(CHECK_SND_NOTIFY_LIBS), error)
2015-03-16 13:16:03 +01:00
LIBS += $(SND_NOTIFY_LIBS)
CFLAGS += $(SND_NOTIFY_CFLAGS)
OBJ += $(SND_NOTIFY_OBJ)
else ifneq ($(MAKECMDGOALS), clean)
2015-07-14 07:27:07 +02:00
MISSING_SND_NOTIFY_LIBS = $(shell for lib in $(SND_NOTIFY_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 sound notifications support)
$(warning WARNING -- You need these libraries for sound notifications support)
$(warning WARNING -- $(MISSING_SND_NOTIFY_LIBS))
endif