annotate src/audtool/Makefile @ 4756:f084f639e962

Automated merge with ssh://paula@hg.atheme.org//hg/audacious
author Paula Stanciu <paula.stanciu@gmail.com>
date Thu, 07 Aug 2008 12:17:14 +0300
parents 3d5862f6c6c4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3535
9ddf21ab5c84 Transit to Mk2.
William Pitcock <nenolod@atheme.org>
parents: 2930
diff changeset
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
3149d4b1a9a9 [svn] - objective-make autodepend fixes
nenolod
parents:
diff changeset
10
3535
9ddf21ab5c84 Transit to Mk2.
William Pitcock <nenolod@atheme.org>
parents: 2930
diff changeset
11 include ../../buildsys.mk
3572
625af2797f35 Clean up Makefiles.
Jonathan Schleifer <js@h3c.de>
parents: 3535
diff changeset
12 include ../../extra.mk
2313
3149d4b1a9a9 [svn] - objective-make autodepend fixes
nenolod
parents:
diff changeset
13
3572
625af2797f35 Clean up Makefiles.
Jonathan Schleifer <js@h3c.de>
parents: 3535
diff changeset
14 CPPFLAGS += ${CFLAGS} -I.. -I../.. -I../intl
4511
2d1e18c97154 indentation
mf0102 <0102@gmx.at>
parents: 4477
diff changeset
15 CFLAGS += ${GTK_CFLAGS} \
2d1e18c97154 indentation
mf0102 <0102@gmx.at>
parents: 4477
diff changeset
16 ${DBUS_CFLAGS} \
2d1e18c97154 indentation
mf0102 <0102@gmx.at>
parents: 4477
diff changeset
17 ${AUDACIOUS_DEFINES} \
2d1e18c97154 indentation
mf0102 <0102@gmx.at>
parents: 4477
diff changeset
18 ${ARCH_DEFINES} \
2d1e18c97154 indentation
mf0102 <0102@gmx.at>
parents: 4477
diff changeset
19 ${MOWGLI_CFLAGS}
2d1e18c97154 indentation
mf0102 <0102@gmx.at>
parents: 4477
diff changeset
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
2d1e18c97154 indentation
mf0102 <0102@gmx.at>
parents: 4477
diff changeset
23 LIBS += ${DBUS_LIBS} \
3572
625af2797f35 Clean up Makefiles.
Jonathan Schleifer <js@h3c.de>
parents: 3535
diff changeset
24 -L../libaudclient -laudclient \
4511
2d1e18c97154 indentation
mf0102 <0102@gmx.at>
parents: 4477
diff changeset
25 ${GTK_LIBS} \
2d1e18c97154 indentation
mf0102 <0102@gmx.at>
parents: 4477
diff changeset
26 ${MOWGLI_LIBS} \
2d1e18c97154 indentation
mf0102 <0102@gmx.at>
parents: 4477
diff changeset
27 ${LIBMCS_LIBS}