Mercurial > audlegacy
annotate src/audtool/Makefile @ 4887:0ddbd0025174 default tip
added libaudtag. (not used yet.)
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Wed, 05 May 2010 18:26:06 +0900 |
parents | 3d5862f6c6c4 |
children |
rev | line source |
---|---|
3535 | 1 PROG = audtool |
4612
8a7752f1c662
Rename the audtool source files to be saner.
Matti Hamalainen <ccr@tnsp.org>
parents:
4511
diff
changeset
|
2 SRCS = main.c \ |
8a7752f1c662
Rename the audtool source files to be saner.
Matti Hamalainen <ccr@tnsp.org>
parents:
4511
diff
changeset
|
3 handlers_general.c \ |
8a7752f1c662
Rename the audtool source files to be saner.
Matti Hamalainen <ccr@tnsp.org>
parents:
4511
diff
changeset
|
4 handlers_playback.c \ |
8a7752f1c662
Rename the audtool source files to be saner.
Matti Hamalainen <ccr@tnsp.org>
parents:
4511
diff
changeset
|
5 handlers_playlist.c \ |
8a7752f1c662
Rename the audtool source files to be saner.
Matti Hamalainen <ccr@tnsp.org>
parents:
4511
diff
changeset
|
6 handlers_playqueue.c \ |
8a7752f1c662
Rename the audtool source files to be saner.
Matti Hamalainen <ccr@tnsp.org>
parents:
4511
diff
changeset
|
7 handlers_vitals.c \ |
8a7752f1c662
Rename the audtool source files to be saner.
Matti Hamalainen <ccr@tnsp.org>
parents:
4511
diff
changeset
|
8 handlers_equalizer.c \ |
8a7752f1c662
Rename the audtool source files to be saner.
Matti Hamalainen <ccr@tnsp.org>
parents:
4511
diff
changeset
|
9 report.c |
2313 | 10 |
3535 | 11 include ../../buildsys.mk |
3572 | 12 include ../../extra.mk |
2313 | 13 |
3572 | 14 CPPFLAGS += ${CFLAGS} -I.. -I../.. -I../intl |
4511 | 15 CFLAGS += ${GTK_CFLAGS} \ |
16 ${DBUS_CFLAGS} \ | |
17 ${AUDACIOUS_DEFINES} \ | |
18 ${ARCH_DEFINES} \ | |
19 ${MOWGLI_CFLAGS} | |
20 | |
4633
3d5862f6c6c4
audtool needs AUDLDFLAGS too.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4612
diff
changeset
|
21 LDFLAGS += ${AUDLDFLAGS} |
3d5862f6c6c4
audtool needs AUDLDFLAGS too.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4612
diff
changeset
|
22 |
4511 | 23 LIBS += ${DBUS_LIBS} \ |
3572 | 24 -L../libaudclient -laudclient \ |
4511 | 25 ${GTK_LIBS} \ |
26 ${MOWGLI_LIBS} \ | |
27 ${LIBMCS_LIBS} |