Remove broken debug print, whoops
[clinton/abcde.git] / Makefile
CommitLineData
c9c2ca27 1INSTALL = /usr/bin/install -c
2
3# Installation directories
4prefix = ${DESTDIR}/usr
5exec_prefix = ${prefix}
6mandir = ${prefix}/share/man/man1
7bindir = ${exec_prefix}/bin
8etcdir = ${DESTDIR}/etc
9
10all:
11
12clean:
13
14install:
15 $(INSTALL) -d -m 755 $(bindir)
f844d993 16 $(INSTALL) -m 755 abcde $(bindir)
17 $(INSTALL) -m 755 cddb-tool $(bindir)
18 $(INSTALL) -m 755 abcde-musicbrainz-tool $(bindir)
c9c2ca27 19 $(INSTALL) -d -m 755 $(mandir)
f844d993 20 $(INSTALL) -m 644 abcde.1 $(mandir)
21 $(INSTALL) -m 644 cddb-tool.1 $(mandir)
c9c2ca27 22 $(INSTALL) -d -m 755 $(etcdir)
f844d993 23 $(INSTALL) -m 644 abcde.conf $(etcdir)
c9c2ca27 24