Mercurial > audlegacy-plugins
annotate src/modplug/Makefile @ 2150:04421592e6a3
Fixed an unexpected cddb error messaje when no cddb info is available
author | Calin Crisan ccrisan@gmail.com |
---|---|
date | Sat, 03 Nov 2007 01:23:56 +0200 |
parents | 6d33dffd1382 |
children | 107c1fed3d92 |
rev | line source |
---|---|
1882 | 1 PLUGIN = modplug${PLUGIN_SUFFIX} |
2014
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
2 |
1882 | 3 SRCS = plugin.cxx \ |
4 modplugbmp.cxx \ | |
5 tables.cxx \ | |
6 sndmix.cxx \ | |
7 sndfile.cxx \ | |
8 snd_fx.cxx \ | |
9 snd_flt.cxx \ | |
10 snd_dsp.cxx \ | |
11 fastmix.cxx \ | |
12 mmcmp.cxx \ | |
13 load_xm.cxx \ | |
14 load_wav.cxx \ | |
15 load_umx.cxx \ | |
16 load_ult.cxx \ | |
17 load_stm.cxx \ | |
18 load_s3m.cxx \ | |
19 load_ptm.cxx \ | |
20 load_okt.cxx \ | |
21 load_mtm.cxx \ | |
22 load_mod.cxx \ | |
23 load_med.cxx \ | |
24 load_mdl.cxx \ | |
25 load_it.cxx \ | |
26 load_far.cxx \ | |
27 load_dsm.cxx \ | |
28 load_dmf.cxx \ | |
29 load_dbm.cxx \ | |
30 load_ams.cxx \ | |
31 load_amf.cxx \ | |
32 load_669.cxx \ | |
33 load_j2b.cxx \ | |
34 load_mt2.cxx \ | |
35 load_psm.cxx \ | |
36 modplug.cxx \ | |
37 archive/archive.cxx \ | |
38 archive/open.cxx \ | |
39 archive/arch_raw.cxx \ | |
40 archive/arch_gzip.cxx \ | |
41 archive/arch_zip.cxx \ | |
42 archive/arch_rar.cxx \ | |
43 archive/arch_bz2.cxx \ | |
44 gui/main.cxx \ | |
45 gui/support.cxx \ | |
46 gui/interface.cxx \ | |
47 gui/callbacks.cxx | |
48 | |
49 include ../../buildsys.mk | |
1781 | 50 include ../../extra.mk |
17 | 51 |
2017
6d33dffd1382
Curly vs round braces (part 1)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2014
diff
changeset
|
52 plugindir := ${plugindir}/${INPUT_PLUGIN_DIR} |
2006
a56a26a5f233
Revised the plugindir logic.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1890
diff
changeset
|
53 |
1882 | 54 CFLAGS += ${PLUGIN_CFLAGS} |
55 CXXFLAGS += ${PLUGIN_CFLAGS} | |
2014
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
56 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MOWGLI_CFLAGS} ${DBUS_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${PANGO_CFLAGS} -I.. -I../.. -I../../intl |
1890
a551306c5f18
Link against stdc++ library for STL use.
William Pitcock <nenolod@atheme.org>
parents:
1882
diff
changeset
|
57 LIBS += ${MOWGLI_LIBS} ${DBUS_LIBS} ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS} -lstdc++ |