extras: add program that copies Artist to AlbumArtist for mp3/ogg/flac files
This commit is contained in:
12
extras/Makefile
Normal file
12
extras/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user