extras: add program that copies Artist to AlbumArtist for mp3/ogg/flac files

This commit is contained in:
Andrzej Rybczak
2011-02-25 20:14:39 +01:00
parent dff99c4b0b
commit a9a40e77e7
2 changed files with 149 additions and 0 deletions

12
extras/Makefile Normal file
View File

@@ -0,0 +1,12 @@
CXX=g++
CXXFLAGS=-O2 -g
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