annotate src/adplug/core/Makefile @ 984:df7b09989aee trunk

[svn] - We got a new plugin, captain! - FileWriter is the ultimate plugin for dumping audio to files. It should be the successor of Disk Writer and Out-Lame, as it supports the same output formats as those (WAVE and MP3). The main advantage of having only one file dumping plugin for many formats is that not every plugin has to think about file handling (where to write files to, how to call them etc.) that much anymore. - FileWriter is also very extensible - adding new output formats should be very easy.
author mf0102
date Mon, 30 Apr 2007 14:16:32 -0700
parents 368f8ee0a95f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
35
33ed88fef9f5 [svn] Let us not go crazy with the ../ there, your includes are not *that* far away, hmmkay?
chainsaw
parents: 15
diff changeset
1 include ../../../mk/rules.mk
33ed88fef9f5 [svn] Let us not go crazy with the ../ there, your includes are not *that* far away, hmmkay?
chainsaw
parents: 15
diff changeset
2 include ../../../mk/init.mk
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
3
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
4 OBJECTIVE_LIBS_NOINST = libadplugcore.a
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
5
351
82a9fabb5b46 [svn] prevent adplug makefile from pointlessly trying to link source files in the core library
giacomo
parents: 339
diff changeset
6 C_SOURCES = fmopl.c debug.c adlibemu.c
82a9fabb5b46 [svn] prevent adplug makefile from pointlessly trying to link source files in the core library
giacomo
parents: 339
diff changeset
7 CXX_SOURCES = adplug.cxx emuopl.cxx diskopl.cxx fprovide.cxx \
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
8 player.cxx database.cxx hsc.cxx sng.cxx imf.cxx players.cxx protrack.cxx \
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
9 a2m.cxx adtrack.cxx amd.cxx bam.cxx d00.cxx dfm.cxx dmo.cxx hsp.cxx ksm.cxx \
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
10 mad.cxx mid.cxx mkj.cxx cff.cxx dtm.cxx fmc.cxx mtk.cxx rad.cxx raw.cxx \
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
11 sa2.cxx s3m.cxx xad.cxx flash.cxx bmf.cxx hybrid.cxx hyp.cxx psi.cxx rat.cxx \
964
368f8ee0a95f [svn] Sync with upstream. Subsong improvements for ADL, new JBM player.
chainsaw
parents: 351
diff changeset
12 u6m.cxx rol.cxx xsm.cxx dro.cxx lds.cxx temuopl.cxx msc.cxx rix.cxx adl.cxx \
368f8ee0a95f [svn] Sync with upstream. Subsong improvements for ADL, new JBM player.
chainsaw
parents: 351
diff changeset
13 jbm.cxx
351
82a9fabb5b46 [svn] prevent adplug makefile from pointlessly trying to link source files in the core library
giacomo
parents: 339
diff changeset
14
82a9fabb5b46 [svn] prevent adplug makefile from pointlessly trying to link source files in the core library
giacomo
parents: 339
diff changeset
15 SOURCES = $(C_SOURCES) $(CXX_SOURCES)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
16
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
17 noinst_HEADERS = adplug.h emuopl.h fmopl.h silentopl.h opl.h diskopl.h \
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
18 a2m.h amd.h bam.h d00.h dfm.h hsc.h hsp.h imf.h ksm.h lds.h mid.h mkj.h mtk.h \
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
19 protrack.h rad.h raw.h sa2.h sng.h u6m.h player.h fmc.h mad.h xad.h bmf.h \
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
20 flash.h hyp.h psi.h rat.h hybrid.h rol.h adtrack.h cff.h dtm.h fprovide.h \
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
21 database.h players.h xsm.h adlibemu.h kemuopl.h dro.h dmo.h s3m.h temuopl.h \
964
368f8ee0a95f [svn] Sync with upstream. Subsong improvements for ADL, new JBM player.
chainsaw
parents: 351
diff changeset
22 msc.h rix.h adl.h jbm.h
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
23
339
d19ac60697ec [svn] - implement virtual class to use VFS through binio
nenolod
parents: 35
diff changeset
24 CXXFLAGS += $(PICFLAGS) $(BINIO_CFLAGS) -I../../../../intl -I../../../.. -Dstricmp=strcasecmp $(BEEP_DEFINES)
d19ac60697ec [svn] - implement virtual class to use VFS through binio
nenolod
parents: 35
diff changeset
25 CFLAGS += $(PICFLAGS) $(BINIO_CFLAGS) -I../../../../intl -I../../../.. -Dstricmp=strcasecmp $(BEEP_DEFINES)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
26
351
82a9fabb5b46 [svn] prevent adplug makefile from pointlessly trying to link source files in the core library
giacomo
parents: 339
diff changeset
27 OBJECTS = ${C_SOURCES:.c=.o} ${CXX_SOURCES:.cxx=.o}
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
28
35
33ed88fef9f5 [svn] Let us not go crazy with the ../ there, your includes are not *that* far away, hmmkay?
chainsaw
parents: 15
diff changeset
29 include ../../../mk/objective.mk