Mercurial > audlegacy-plugins
annotate src/adplug/core/Makefile @ 1166:4bd7e72a6605 trunk
[svn] - handle metadata in better way.
author | yaz |
---|---|
date | Wed, 06 Jun 2007 22:58:18 -0700 |
parents | 368f8ee0a95f |
children |
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 |