Mercurial > audlegacy-plugins
comparison src/console/Makefile @ 1766:c3fdb0e5a306
Convert some makefiles, remove some -DHAVE_CONFIG_H.
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Mon, 24 Sep 2007 11:13:14 -0500 |
parents | 550c9e382cf8 |
children | d9d4b258fbf1 |
comparison
equal
deleted
inserted
replaced
1765:1b521a30820b | 1766:c3fdb0e5a306 |
---|---|
1 include ../../mk/rules.mk | 1 include ../../extra.mk |
2 include ../../mk/init.mk | |
3 | 2 |
4 OBJECTIVE_LIBS = libconsole$(SHARED_SUFFIX) | 3 PLUGIN = console$(PLUGIN_SUFFIX) |
5 | 4 |
6 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR) | 5 plugindir = audacious/$(INPUT_PLUGIN_DIR) |
7 | 6 |
8 SOURCES = \ | 7 SRCS = \ |
9 Audacious_Config.cxx \ | 8 Audacious_Config.cxx \ |
10 Audacious_Driver.cxx \ | 9 Audacious_Driver.cxx \ |
11 Ay_Apu.cxx \ | 10 Ay_Apu.cxx \ |
12 Ay_Cpu.cxx \ | 11 Ay_Cpu.cxx \ |
13 Ay_Emu.cxx \ | 12 Ay_Emu.cxx \ |
55 Vgm_Emu_Impl.cxx \ | 54 Vgm_Emu_Impl.cxx \ |
56 Ym2413_Emu.cxx \ | 55 Ym2413_Emu.cxx \ |
57 Ym2612_Emu.cxx \ | 56 Ym2612_Emu.cxx \ |
58 Zlib_Inflater.cxx | 57 Zlib_Inflater.cxx |
59 | 58 |
60 OBJECTS = ${SOURCES:.cxx=.o} | 59 include ../../buildsys.mk |
61 | 60 |
62 LIBADD += -lz $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) -lstdc++ | 61 LIBS += -lz $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) -lstdc++ |
63 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(ARCH_DEFINES) -I../../intl -I../.. | 62 CFLAGS += $(PLUGIN_CFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(ARCH_DEFINES) -I../../intl -I../.. |
64 CXXFLAGS += $(PICFLAGS) $(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../.. |
65 | 64 CPPFLAGS += $(CXXFLAGS) |
66 include ../../mk/objective.mk |