diff options
author | 2012-08-19 23:10:56 +0200 | |
---|---|---|
committer | 2012-08-19 23:10:56 +0200 | |
commit | d376aa5fa9a2767c83ebfe2bdac50642cfbad96d (patch) | |
tree | e20f420e97ca71baef2c0d07f1791cd47f327e57 /Makefile | |
parent | Initial commit of tag extractor and test main. (diff) | |
download | music-file-organizer-d376aa5fa9a2767c83ebfe2bdac50642cfbad96d.tar.xz music-file-organizer-d376aa5fa9a2767c83ebfe2bdac50642cfbad96d.zip |
Add read tag program. Fix uninitialized error.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dcf72b2 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +LDFLAGS += $(shell pkg-config --libs taglib) +CXXFLAGS ?= -O3 -pipe -fomit-frame-pointer -march=native +CXXFLAGS += $(shell pkg-config --cflags taglib) + + +all: readtags organizemusic + +readtags: AudioFile.cpp AudioFile.h readtags.cpp + +organizemusic: AudioFile.cpp AudioFile.h organizemusic.cpp |