This repository has been archived on 2020-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
gnoemoe/gnoemoe/Makefile.am

70 lines
1.6 KiB
Makefile
Raw Permalink Normal View History

2005-11-07 10:56:25 +01:00
## Process this file with automake to produce Makefile.in
if HAS_PARSER
SUBDIRS = parser
endif
2005-11-07 11:23:01 +01:00
CLEANFILES =
2005-11-07 10:56:25 +01:00
INCLUDES = \
2006-01-10 01:43:16 +01:00
-I$(srcdir) \
2005-11-07 10:56:25 +01:00
-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
@PACKAGE_CFLAGS@ \
2006-02-20 23:30:41 +01:00
@NOTIFY_CFLAGS@ \
2006-03-24 12:59:42 +01:00
@RUBY_CFLAGS@
2005-11-07 10:56:25 +01:00
bin_PROGRAMS = gnoemoe
2005-11-07 11:23:01 +01:00
BUILT_SOURCES = gm-marshal.c gm-marshal.h
2005-11-07 10:56:25 +01:00
2006-01-10 01:43:16 +01:00
gnoemoe_SOURCES =
include widgets/Makefile.include
include dialogs/Makefile.include
include mcp/Makefile.include
include mcp/Makefile.classes
gnoemoe_SOURCES += $(BUILT_SOURCES) \
gm-ansi.h gm-ui.h \
2005-11-07 10:56:25 +01:00
gm-app.c gm-app.h \
gm-options.c gm-options.h \
gm-color-table.c gm-color-table.h \
gm-net.c gm-net.h \
gm-triggers.c gm-triggers.h \
gm-world.c gm-world.h \
gm-string.c gm-string.h \
gm-support.c gm-support.h \
gm-editor.c gm-editor.h \
gm-pixbuf.c gm-pixbuf.h \
gm-debug.c gm-debug.h \
list.c list.h
2005-11-07 10:56:25 +01:00
2006-01-10 01:43:16 +01:00
EXTRA_DIST = gm-marshal.list \
widgets/Makefile.include \
dialogs/Makefile.include \
mcp/Makefile.include \
mcp/Makefile.classes
2005-11-07 10:56:25 +01:00
gnoemoe_LDADD = @PACKAGE_LIBS@ $(INTLLIBS) @RUBY_LIBS@ @NOTIFY_LIBS@
if HAS_PARSER
gnoemoe_LDADD += parser/libparser.la
endif
2006-03-24 12:59:42 +01:00
if HAS_RUBY
2005-11-07 10:56:25 +01:00
gnoemoe_SOURCES += gm-scripts.c gm-scripts.h
endif
2005-11-07 10:56:25 +01:00
gm-marshal.h: gm-marshal.list $(GLIB_GENMARSHAL)
$(GLIB_GENMARSHAL) $< --header --prefix=gm_marshal > $@
gm-marshal.c: gm-marshal.list $(GLIB_GENMARSHAL)
echo "#include \"gm-marshal.h\"" > $@ && \
$(GLIB_GENMARSHAL) $< --body --prefix=gm_marshal >> $@
2005-11-07 11:23:01 +01:00
CLEANFILES += $(BUILT_SOURCES)
2005-11-07 10:56:25 +01:00
dist-hook:
cd $(distdir); rm -f $(BUILT_SOURCES)
* VERSION CHANGED TO 2.0.9 * po/POTFILES.in: added gnoemoe/dialogs/gm-world-paste-dialog.c and ui/gm-world-paste.glade * po/nl.po: added translations * ui/Makefile.am: * ui/gm-ui.xml: * ui/gm-world-paste.glade: new paste dialog * gnoemoe/mcp/Makefile.include: added gm-cell-renderer-text.[ch] * gnoemoe/mcp/gm-cell-renderer-text.[ch]: new cell renderer for rendering userlist * gnoemoe/mcp/gm-mcp-vmoo-client.c: update metrics in timeout so to reduce the number of updates when resizing * gnoemoe/mcp/gm-mcp-icecrew-serverinfo.c: max version set to 1.0 (1.0 does not actively request the info because it will be send on initialization). Set menu item invisible instead of insensitive when there is no info available * gnoemoe/mcp/gm-mcp-icecrew-userlist.c: fixed menu item substitution * gnoemoe/mcp/gm-mcp-vmoo-userlist.c: removed support for status because it doesn't really support it * gm-mcp-userlist-view.[ch]: moved column constants to header. Render items with new gm-cell-renderer-text. * gnoemoe/mcp/gm-mcp-icecrew-playerdb.[ch]: made gm_mcp_icecrew_playerdb_players public * gnoemoe/dialogs/Makefile.include: added gm-world-paste-dialog * gnoemoe/dialogs/gm-world-paste-dialog.[ch]: new paste dialog * gnoemoe/dialogs/gm-world-properties-dialog.c: * gnoemoe/dialogs/gm-world-logs-dialog.c: fixed leaking tree stores * gnoemoe/widgets/Makefile.include: added gm-commands.[ch] * gnoemoe/widgets/gm-commands.[ch]: new file for handling action activation (removed from gm-app-view) * gnoemoe/widgets/gm-world-view.c: fixed userlist size restore * gnoemoe/widgets/gm-app-view.c: removed action handlers * gnoemoe/gm-support.[ch]: added gm_find_child * gnoemoe/gm-world.c: removed debug message * gnoemoe/gm-ui.h: changed actions to gm-commands
2006-04-23 16:51:04 +02:00
AM_CFLAGS = -Werror -Wall -Wsign-compare