Files
ncmpcpp/extras/Makefile
2012-10-02 19:40:03 +02:00

13 lines
344 B
Makefile

CXX=g++
CXXFLAGS=-O2 -march=native -pipe -std=c++0x -Wall -Wextra -Wshadow -Werror
CPPFLAGS=`taglib-config --cflags`
LDFLAGS=`taglib-config --libs`
artist_to_albumartist: artist_to_albumartist.cpp
$(CXX) artist_to_albumartist.cpp -o artist_to_albumartist $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS)
clean:
rm -f artist_to_albumartist
.PHONY: clean