actions: use unique_ptr for storing actions
[ncmpcpp.git] / extras / Makefile
blob0b51e15ac8c2f410b125e99f9012ef7f7146bdfe
1 CXX=g++
2 CXXFLAGS=-O2 -march=native -pipe -std=c++0x -Wall -Wextra -Wshadow -Werror
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