comparison src/adplug/Makefile @ 1872:50f1c5a40a7d

adplug -> new buildsys. Untested, please test!
author Jonathan Schleifer <js@h3c.de>
date Tue, 25 Sep 2007 18:03:21 +0200
parents f19e6748d8eb
children 52d162b0dbd4
comparison
equal deleted inserted replaced
1868:00738dd0dce6 1872:50f1c5a40a7d
1 include ../../mk/rules.mk 1 PLUGIN = adplug${PLUGIN_SUFFIX}
2 include ../../mk/init.mk 2 SRCS = adplug-xmms.cc \
3 core/fmopl.c \
4 core/debug.c \
5 core/adlibemu.c \
6 core/adplug.cxx \
7 core/emuopl.cxx \
8 core/diskopl.cxx \
9 core/fprovide.cxx \
10 core/player.cxx \
11 core/database.cxx \
12 core/hsc.cxx \
13 core/sng.cxx \
14 core/imf.cxx \
15 core/players.cxx \
16 core/protrack.cxx \
17 core/a2m.cxx \
18 core/adtrack.cxx \
19 core/amd.cxx \
20 core/bam.cxx \
21 core/d00.cxx \
22 core/dfm.cxx \
23 core/dmo.cxx \
24 core/hsp.cxx \
25 core/ksm.cxx \
26 core/mad.cxx \
27 core/mid.cxx \
28 core/mkj.cxx \
29 core/cff.cxx \
30 core/dtm.cxx \
31 core/fmc.cxx \
32 core/mtk.cxx \
33 core/rad.cxx \
34 core/raw.cxx \
35 core/sa2.cxx \
36 core/s3m.cxx \
37 core/xad.cxx \
38 core/flash.cxx \
39 core/bmf.cxx \
40 core/hybrid.cxx \
41 core/hyp.cxx \
42 core/psi.cxx \
43 core/rat.cxx \
44 core/u6m.cxx \
45 core/rol.cxx \
46 core/xsm.cxx \
47 core/dro.cxx \
48 core/lds.cxx \
49 core/temuopl.cxx \
50 core/msc.cxx \
51 core/rix.cxx \
52 core/adl.cxx \
53 core/jbm.cxx
3 54
4 SUBDIRS = core 55 plugindir = audacious/${INPUT_PLUGIN_DIR}
5 OBJECTIVE_LIBS = libadplug$(SHARED_SUFFIX)
6 56
7 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR) 57 include ../../buildsys.mk
58 include ../../extra.mk
8 59
9 LIBADD = ./core/libadplugcore.a $(BINIO_LIBS) $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) -lstdc++ 60 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${PANGO_CFLAGS} ${BINIO_CFLAGS} -I../../intl -I../.. -I./core -Dstricmp=strcasecmp
10 61 CFLAGS += ${PLUGIN_CFLAGS}
11 SOURCES = adplug-xmms.cc 62 CXXFLAGS += ${PLUGIN_CFLAGS}
12 63 LIBS += ${BINIO_LIBS} ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS}
13 OBJECTS = ${SOURCES:.cc=.o}
14
15 LIBDEP = ./core/libadplugcore.a
16
17 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(BINIO_CFLAGS) \
18 -I../../intl -I../.. -I./core
19 CXXFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(BINIO_CFLAGS) \
20 -I../../intl -I../.. -I./core
21
22 include ../../mk/objective.mk