Mercurial > audlegacy-plugins
annotate src/modplug/Makefile @ 3126:2d2a50196556
Backed out changeset 617cd51dfee5
This didn't work, and doesn't seem right.
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Wed, 06 May 2009 14:04:28 -0500 |
parents | 585f2fc4134e |
children |
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 \ | |
25 load_mdl.cxx \ | |
26 load_it.cxx \ | |
27 load_far.cxx \ | |
28 load_dsm.cxx \ | |
29 load_dmf.cxx \ | |
30 load_dbm.cxx \ | |
31 load_ams.cxx \ | |
32 load_amf.cxx \ | |
33 load_669.cxx \ | |
34 load_mt2.cxx \ | |
35 load_psm.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 include ../../buildsys.mk | |
1781 | 49 include ../../extra.mk |
17 | 50 |
2017
6d33dffd1382
Curly vs round braces (part 1)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2014
diff
changeset
|
51 plugindir := ${plugindir}/${INPUT_PLUGIN_DIR} |
2006
a56a26a5f233
Revised the plugindir logic.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1890
diff
changeset
|
52 |
1882 | 53 CFLAGS += ${PLUGIN_CFLAGS} |
54 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
|
55 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
|
56 LIBS += ${MOWGLI_LIBS} ${GTK_LIBS} ${GLIB_LIBS} -lstdc++ |