annotate Plugins/Input/adplug/core/Makefile.in @ 784:c6fd2ce0f8e8 trunk

[svn] - oh shit, i just found the error, we were calling malloc(0)!
author nenolod
date Thu, 02 Mar 2006 15:50:49 -0800
parents 2b06eb5e472d
children ff4cae379f38
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
587
e0889076790e [svn] Convert adplug over to build objectives...
nenolod
parents:
diff changeset
1 include ../../../../mk/rules.mk
e0889076790e [svn] Convert adplug over to build objectives...
nenolod
parents:
diff changeset
2 include ../../../../mk/objective.mk
e0889076790e [svn] Convert adplug over to build objectives...
nenolod
parents:
diff changeset
3
e0889076790e [svn] Convert adplug over to build objectives...
nenolod
parents:
diff changeset
4 OBJECTIVE_LIBS_NOINST = libadplugcore.a
e0889076790e [svn] Convert adplug over to build objectives...
nenolod
parents:
diff changeset
5
637
2b06eb5e472d [svn] Sync with upstream. Drop hardware OPL2/3 support, it throws warnings and is not used on most modern machines. Added var inits where GCC 4.0 thought it was a good idea.
chainsaw
parents: 619
diff changeset
6 SOURCES = adplug.cpp emuopl.cpp fmopl.c diskopl.cpp debug.c fprovide.cpp \
2b06eb5e472d [svn] Sync with upstream. Drop hardware OPL2/3 support, it throws warnings and is not used on most modern machines. Added var inits where GCC 4.0 thought it was a good idea.
chainsaw
parents: 619
diff changeset
7 player.cpp database.cpp hsc.cpp sng.cpp imf.cpp players.cpp protrack.cpp \
2b06eb5e472d [svn] Sync with upstream. Drop hardware OPL2/3 support, it throws warnings and is not used on most modern machines. Added var inits where GCC 4.0 thought it was a good idea.
chainsaw
parents: 619
diff changeset
8 a2m.cpp adtrack.cpp amd.cpp bam.cpp d00.cpp dfm.cpp dmo.cpp hsp.cpp ksm.cpp \
2b06eb5e472d [svn] Sync with upstream. Drop hardware OPL2/3 support, it throws warnings and is not used on most modern machines. Added var inits where GCC 4.0 thought it was a good idea.
chainsaw
parents: 619
diff changeset
9 mad.cpp mid.cpp mkj.cpp cff.cpp dtm.cpp fmc.cpp mtk.cpp rad.cpp raw.cpp \
2b06eb5e472d [svn] Sync with upstream. Drop hardware OPL2/3 support, it throws warnings and is not used on most modern machines. Added var inits where GCC 4.0 thought it was a good idea.
chainsaw
parents: 619
diff changeset
10 sa2.cpp s3m.cpp xad.cpp flash.cpp bmf.cpp hybrid.cpp hyp.cpp psi.cpp rat.cpp \
2b06eb5e472d [svn] Sync with upstream. Drop hardware OPL2/3 support, it throws warnings and is not used on most modern machines. Added var inits where GCC 4.0 thought it was a good idea.
chainsaw
parents: 619
diff changeset
11 u6m.cpp rol.cpp xsm.cpp adlibemu.c dro.cpp lds.cpp temuopl.cpp msc.cpp rix.cpp
587
e0889076790e [svn] Convert adplug over to build objectives...
nenolod
parents:
diff changeset
12
e0889076790e [svn] Convert adplug over to build objectives...
nenolod
parents:
diff changeset
13 noinst_HEADERS = adplug.h emuopl.h fmopl.h silentopl.h opl.h diskopl.h \
e0889076790e [svn] Convert adplug over to build objectives...
nenolod
parents:
diff changeset
14 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 \
e0889076790e [svn] Convert adplug over to build objectives...
nenolod
parents:
diff changeset
15 protrack.h rad.h raw.h sa2.h sng.h u6m.h player.h fmc.h mad.h xad.h bmf.h \
e0889076790e [svn] Convert adplug over to build objectives...
nenolod
parents:
diff changeset
16 flash.h hyp.h psi.h rat.h hybrid.h rol.h adtrack.h cff.h dtm.h fprovide.h \
637
2b06eb5e472d [svn] Sync with upstream. Drop hardware OPL2/3 support, it throws warnings and is not used on most modern machines. Added var inits where GCC 4.0 thought it was a good idea.
chainsaw
parents: 619
diff changeset
17 database.h players.h xsm.h adlibemu.h kemuopl.h dro.h dmo.h s3m.h temuopl.h \
2b06eb5e472d [svn] Sync with upstream. Drop hardware OPL2/3 support, it throws warnings and is not used on most modern machines. Added var inits where GCC 4.0 thought it was a good idea.
chainsaw
parents: 619
diff changeset
18 msc.h rix.h
587
e0889076790e [svn] Convert adplug over to build objectives...
nenolod
parents:
diff changeset
19
e0889076790e [svn] Convert adplug over to build objectives...
nenolod
parents:
diff changeset
20 CFLAGS += -fPIC -DPIC $(BINIO_CFLAGS) -I../../../../intl -I../../../..
619
fc1788e1ab04 [svn] Start building adplug.
chainsaw
parents: 589
diff changeset
21 CXXFLAGS = $(CFLAGS) -Dstricmp=strcasecmp
589
eb704fd2096b [svn] adplug fixes
nenolod
parents: 587
diff changeset
22
eb704fd2096b [svn] adplug fixes
nenolod
parents: 587
diff changeset
23 OBJECTS = ${SOURCES:.c=.o} ${SOURCES:.cpp=.o}