summarylogtreecommitdiffstats
path: root/makefile
blob: d1912cd65cc74d979fd5d3974344c3c0889c8f46 (plain)
1
2
3
4
5
6
7
8
9
CFLAGS = $$(pkg-config --cflags libgroove) -Wall
LDLIBS = $$(pkg-config --libs libgroove)

test-installation: test
	@./test
	@echo 'Currently installed libgroove.pc version:' \
	    $$(pkg-config --modversion libgroove)

.PHONY: test-installation