Mercurial > audlegacy-plugins
annotate src/modplug/Makefile @ 1890:a551306c5f18
Link against stdc++ library for STL use.
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Wed, 26 Sep 2007 11:30:04 -0500 |
parents | eed7c270e8dd |
children | a56a26a5f233 |
rev | line source |
---|---|
1882 | 1 PLUGIN = modplug${PLUGIN_SUFFIX} |
2 SRCS = plugin.cxx \ | |
3 modplugbmp.cxx \ | |
4 tables.cxx \ | |
5 sndmix.cxx \ | |
6 sndfile.cxx \ | |
7 snd_fx.cxx \ | |
8 snd_flt.cxx \ | |
9 snd_dsp.cxx \ | |
10 fastmix.cxx \ | |
11 mmcmp.cxx \ | |
12 load_xm.cxx \ | |
13 load_wav.cxx \ | |
14 load_umx.cxx \ | |
15 load_ult.cxx \ | |
16 load_stm.cxx \ | |
17 load_s3m.cxx \ | |
18 load_ptm.cxx \ | |
19 load_okt.cxx \ | |
20 load_mtm.cxx \ | |
21 load_mod.cxx \ | |
22 load_med.cxx \ | |
23 load_mdl.cxx \ | |
24 load_it.cxx \ | |
25 load_far.cxx \ | |
26 load_dsm.cxx \ | |
27 load_dmf.cxx \ | |
28 load_dbm.cxx \ | |
29 load_ams.cxx \ | |
30 load_amf.cxx \ | |
31 load_669.cxx \ | |
32 load_j2b.cxx \ | |
33 load_mt2.cxx \ | |
34 load_psm.cxx \ | |
35 modplug.cxx \ | |
36 archive/archive.cxx \ | |
37 archive/open.cxx \ | |
38 archive/arch_raw.cxx \ | |
39 archive/arch_gzip.cxx \ | |
40 archive/arch_zip.cxx \ | |
41 archive/arch_rar.cxx \ | |
42 archive/arch_bz2.cxx \ | |
43 gui/main.cxx \ | |
44 gui/support.cxx \ | |
45 gui/interface.cxx \ | |
46 gui/callbacks.cxx | |
47 | |
48 plugindir = audacious/${INPUT_PLUGIN_DIR} | |
49 | |
50 include ../../buildsys.mk | |
1781 | 51 include ../../extra.mk |
17 | 52 |
1882 | 53 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MOWGLI_CFLAGS} ${DBUS_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${PANGO_CFLAGS} -I.. -I../.. -I../../intl |
54 CFLAGS += ${PLUGIN_CFLAGS} | |
55 CXXFLAGS += ${PLUGIN_CFLAGS} | |
1890
a551306c5f18
Link against stdc++ library for STL use.
William Pitcock <nenolod@atheme.org>
parents:
1882
diff
changeset
|
56 LIBS += ${MOWGLI_LIBS} ${DBUS_LIBS} ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS} -lstdc++ |