default: all
.PHONY: all default clean

ifndef PKG_CONFIG
  PKG_CONFIG=pkg-config
endif

CFLAGS+=$(shell $(PKG_CONFIG) --cflags gavl)
LDLIBS+=$(shell $(PKG_CONFIG) --libs gavl)
all: sampleformats
