File: Makefile

package info (click to toggle)
id3v2 0.1.3-5
  • links: PTS
  • area: main
  • in suites: woody
  • size: 120 kB
  • ctags: 24
  • sloc: cpp: 1,153; makefile: 47
file content (10 lines) | stat: -rw-r--r-- 190 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
all: id3v2

id3v2: Makefile convert.cpp list.cpp id3v2.cpp convert.cpp
	g++ -lid3 -g -o id3v2 id3v2.cpp list.cpp convert.cpp

install: all
	cp id3v2 /usr/local/bin/

clean:
	rm -f id3v2 core