Mercurial > audlegacy-plugins
annotate src/modplug/Makefile @ 2528:134deb25be83
Remove DBUS_CFLAGS and DBUS_LIBS from Makefiles that don't need them.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Thu, 17 Apr 2008 05:34:30 +0300 |
parents | c42fa8f89616 |
children | f791c889f74c |
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 \ | |
2337
107c1fed3d92
Port Schism modplug core.
"Tony Vroon <chainsaw@gentoo.org>"
parents:
2017
diff
changeset
|
8 snd_eq.cxx \ |
1882 | 9 snd_fx.cxx \ |
10 snd_flt.cxx \ | |
11 snd_dsp.cxx \ | |
12 fastmix.cxx \ | |
13 mmcmp.cxx \ | |
14 load_xm.cxx \ | |
15 load_wav.cxx \ | |
16 load_umx.cxx \ | |
17 load_ult.cxx \ | |
18 load_stm.cxx \ | |
19 load_s3m.cxx \ | |
20 load_ptm.cxx \ | |
21 load_okt.cxx \ | |
22 load_mtm.cxx \ | |
23 load_mod.cxx \ | |
24 load_med.cxx \ | |
2337
107c1fed3d92
Port Schism modplug core.
"Tony Vroon <chainsaw@gentoo.org>"
parents:
2017
diff
changeset
|
25 load_mid.cxx \ |
1882 | 26 load_mdl.cxx \ |
27 load_it.cxx \ | |
28 load_far.cxx \ | |
29 load_dsm.cxx \ | |
30 load_dmf.cxx \ | |
31 load_dbm.cxx \ | |
32 load_ams.cxx \ | |
33 load_amf.cxx \ | |
34 load_669.cxx \ | |
35 load_j2b.cxx \ | |
36 load_mt2.cxx \ | |
37 load_psm.cxx \ | |
38 archive/archive.cxx \ | |
39 archive/open.cxx \ | |
40 archive/arch_raw.cxx \ | |
41 archive/arch_gzip.cxx \ | |
42 archive/arch_zip.cxx \ | |
43 archive/arch_rar.cxx \ | |
44 archive/arch_bz2.cxx \ | |
45 gui/main.cxx \ | |
46 gui/support.cxx \ | |
47 gui/interface.cxx \ | |
48 gui/callbacks.cxx | |
49 | |
50 include ../../buildsys.mk | |
1781 | 51 include ../../extra.mk |
17 | 52 |
2017
6d33dffd1382
Curly vs round braces (part 1)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2014
diff
changeset
|
53 plugindir := ${plugindir}/${INPUT_PLUGIN_DIR} |
2006
a56a26a5f233
Revised the plugindir logic.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1890
diff
changeset
|
54 |
1882 | 55 CFLAGS += ${PLUGIN_CFLAGS} |
56 CXXFLAGS += ${PLUGIN_CFLAGS} | |
2528
134deb25be83
Remove DBUS_CFLAGS and DBUS_LIBS from Makefiles that don't need them.
Matti Hamalainen <ccr@tnsp.org>
parents:
2524
diff
changeset
|
57 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MOWGLI_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} -I.. -I../.. -I../../intl |
134deb25be83
Remove DBUS_CFLAGS and DBUS_LIBS from Makefiles that don't need them.
Matti Hamalainen <ccr@tnsp.org>
parents:
2524
diff
changeset
|
58 LIBS += ${MOWGLI_LIBS} ${GTK_LIBS} ${GLIB_LIBS} -lstdc++ |