summaryrefslogtreecommitdiff
path: root/libevent.mk
blob: 74c9946304755139e9564bcfb43c553add4c453d (plain)
1
2
3
4
5
6
ifeq ($(shell pkg-config libevent; echo $$?),1)
$(error pkg libevent not found)
endif

CFLAGS	+= $(shell pkg-config --cflags libevent)
LDFLAGS	+= $(shell pkg-config --libs libevent)