You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|
|
|