visualizer: simplify computing number of read samples
[ncmpcpp.git] / extras / Makefile
blob6d4c9eea973c263f843a49bd615a149a769f06f9
1 CXX=g++
2 CXXFLAGS=-O2 -g
3 CPPFLAGS=`taglib-config --cflags`
4 LDFLAGS=`taglib-config --libs`
6 artist_to_albumartist: artist_to_albumartist.cpp
7 $(CXX) artist_to_albumartist.cpp -o artist_to_albumartist $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS)
9 clean:
10 rm -f artist_to_albumartist
12 .PHONY: clean