comparison src/console/Makefile @ 1862:d9d4b258fbf1

Millions of Makefile fixes. More to follow.
author Jonathan Schleifer <js@h3c.de>
date Mon, 24 Sep 2007 23:03:25 +0200
parents c3fdb0e5a306
children 2a5ee6ed598d
comparison
equal deleted inserted replaced
1861:cbcb6d2154bd 1862:d9d4b258fbf1
1 PLUGIN = console${PLUGIN_SUFFIX}
2 SRCS = Audacious_Config.cxx \
3 Audacious_Driver.cxx \
4 Ay_Apu.cxx \
5 Ay_Cpu.cxx \
6 Ay_Emu.cxx \
7 Blip_Buffer.cxx \
8 Classic_Emu.cxx \
9 Data_Reader.cxx \
10 Dual_Resampler.cxx \
11 Effects_Buffer.cxx \
12 Fir_Resampler.cxx \
13 Gbs_Emu.cxx \
14 Gb_Apu.cxx \
15 Gb_Cpu.cxx \
16 Gb_Oscs.cxx \
17 gme.cxx \
18 Gme_File.cxx \
19 Gym_Emu.cxx \
20 Gzip_Reader.cxx \
21 Hes_Apu.cxx \
22 Hes_Cpu.cxx \
23 Hes_Emu.cxx \
24 Kss_Cpu.cxx \
25 Kss_Emu.cxx \
26 Kss_Scc_Apu.cxx \
27 M3u_Playlist.cxx \
28 Multi_Buffer.cxx \
29 Music_Emu.cxx \
30 Nes_Apu.cxx \
31 Nes_Cpu.cxx \
32 Nes_Fme7_Apu.cxx \
33 Nes_Namco_Apu.cxx \
34 Nes_Oscs.cxx \
35 Nes_Vrc6_Apu.cxx \
36 Nsfe_Emu.cxx \
37 Nsf_Emu.cxx \
38 Sap_Apu.cxx \
39 Sap_Cpu.cxx \
40 Sap_Emu.cxx \
41 Sms_Apu.cxx \
42 Snes_Spc.cxx \
43 Spc_Cpu.cxx \
44 Spc_Dsp.cxx \
45 Spc_Emu.cxx \
46 Vfs_File.cxx \
47 Vgm_Emu.cxx \
48 Vgm_Emu_Impl.cxx \
49 Ym2413_Emu.cxx \
50 Ym2612_Emu.cxx \
51 Zlib_Inflater.cxx
52
53 plugindir = audacious/${INPUT_PLUGIN_DIR}
54
55 include ../../buildsys.mk
1 include ../../extra.mk 56 include ../../extra.mk
2 57
3 PLUGIN = console$(PLUGIN_SUFFIX) 58 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MOWGLI_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${PANGO_CFLAGS} ${ARCH_DEFINES} ${DBUS_CFLAGS} -I../../intl -I../..
4 59 CFLAGS += ${PLUGIN_CFLAGS}
5 plugindir = audacious/$(INPUT_PLUGIN_DIR) 60 CXXFLAGS += ${PLUGIN_CFLAGS}
6 61 LIBS += -lz ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS}$ ${DBUS_LIB}
7 SRCS = \
8 Audacious_Config.cxx \
9 Audacious_Driver.cxx \
10 Ay_Apu.cxx \
11 Ay_Cpu.cxx \
12 Ay_Emu.cxx \
13 Blip_Buffer.cxx \
14 Classic_Emu.cxx \
15 Data_Reader.cxx \
16 Dual_Resampler.cxx \
17 Effects_Buffer.cxx \
18 Fir_Resampler.cxx \
19 Gbs_Emu.cxx \
20 Gb_Apu.cxx \
21 Gb_Cpu.cxx \
22 Gb_Oscs.cxx \
23 gme.cxx \
24 Gme_File.cxx \
25 Gym_Emu.cxx \
26 Gzip_Reader.cxx \
27 Hes_Apu.cxx \
28 Hes_Cpu.cxx \
29 Hes_Emu.cxx \
30 Kss_Cpu.cxx \
31 Kss_Emu.cxx \
32 Kss_Scc_Apu.cxx \
33 M3u_Playlist.cxx \
34 Multi_Buffer.cxx \
35 Music_Emu.cxx \
36 Nes_Apu.cxx \
37 Nes_Cpu.cxx \
38 Nes_Fme7_Apu.cxx \
39 Nes_Namco_Apu.cxx \
40 Nes_Oscs.cxx \
41 Nes_Vrc6_Apu.cxx \
42 Nsfe_Emu.cxx \
43 Nsf_Emu.cxx \
44 Sap_Apu.cxx \
45 Sap_Cpu.cxx \
46 Sap_Emu.cxx \
47 Sms_Apu.cxx \
48 Snes_Spc.cxx \
49 Spc_Cpu.cxx \
50 Spc_Dsp.cxx \
51 Spc_Emu.cxx \
52 Vfs_File.cxx \
53 Vgm_Emu.cxx \
54 Vgm_Emu_Impl.cxx \
55 Ym2413_Emu.cxx \
56 Ym2612_Emu.cxx \
57 Zlib_Inflater.cxx
58
59 include ../../buildsys.mk
60
61 LIBS += -lz $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) -lstdc++
62 CFLAGS += $(PLUGIN_CFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(ARCH_DEFINES) -I../../intl -I../..
63 CXXFLAGS += $(PLUGIN_CFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(ARCH_DEFINES) -I../../intl -I../..
64 CPPFLAGS += $(CXXFLAGS)