blob: 0b51e15ac8c2f410b125e99f9012ef7f7146bdfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
|