Mercurial > audlegacy-plugins
annotate src/adplug/core/Makefile @ 351:82a9fabb5b46 trunk
[svn] prevent adplug makefile from pointlessly trying to link source files in the core library
| author | giacomo |
|---|---|
| date | Sat, 09 Dec 2006 05:29:06 -0800 |
| parents | d19ac60697ec |
| children | 368f8ee0a95f |
| 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 \ |
|
351
82a9fabb5b46
[svn] prevent adplug makefile from pointlessly trying to link source files in the core library
giacomo
parents:
339
diff
changeset
|
12 u6m.cxx rol.cxx xsm.cxx dro.cxx lds.cxx temuopl.cxx msc.cxx rix.cxx adl.cxx |
|
82a9fabb5b46
[svn] prevent adplug makefile from pointlessly trying to link source files in the core library
giacomo
parents:
339
diff
changeset
|
13 |
|
82a9fabb5b46
[svn] prevent adplug makefile from pointlessly trying to link source files in the core library
giacomo
parents:
339
diff
changeset
|
14 SOURCES = $(C_SOURCES) $(CXX_SOURCES) |
|
0
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
15 |
|
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
16 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
|
17 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
|
18 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
|
19 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
|
20 database.h players.h xsm.h adlibemu.h kemuopl.h dro.h dmo.h s3m.h temuopl.h \ |
|
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
21 msc.h rix.h adl.h |
|
13389e613d67
[svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff
changeset
|
22 |
|
339
d19ac60697ec
[svn] - implement virtual class to use VFS through binio
nenolod
parents:
35
diff
changeset
|
23 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
|
24 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
|
25 |
|
351
82a9fabb5b46
[svn] prevent adplug makefile from pointlessly trying to link source files in the core library
giacomo
parents:
339
diff
changeset
|
26 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
|
27 |
|
35
33ed88fef9f5
[svn] Let us not go crazy with the ../ there, your includes are not *that* far away, hmmkay?
chainsaw
parents:
15
diff
changeset
|
28 include ../../../mk/objective.mk |
