1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
# Plugin glade file
anjuta_gladedir = $(anjuta_glade_dir)
anjuta_glade_DATA = anjuta-debug-manager.ui
anjuta_uidir = $(anjuta_ui_dir)
anjuta_ui_DATA = anjuta-debug-manager.xml
schemadir = @GCONF_SCHEMA_FILE_DIR@
schema_in_files = anjuta-debug-manager.schemas.in
schema_DATA = $(schema_in_files:.schemas.in=.schemas)
@INTLTOOL_SCHEMAS_RULE@
plugin_in_files = anjuta-debug-manager.plugin.in
%.plugin: %.plugin.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
anjuta_plugindir = $(anjuta_plugin_dir)
anjuta_plugin_DATA = $(plugin_in_files:.plugin.in=.plugin)
AM_CPPFLAGS= \
$(WARN_CFLAGS) \
$(GIO_CFLAGS) \
$(LIBANJUTA_CFLAGS)
plugindir = $(anjuta_plugin_dir)
plugin_LTLIBRARIES = libanjuta-debug-manager.la
libanjuta_debug_manager_la_LDFLAGS = $(ANJUTA_PLUGIN_LDFLAGS)
libanjuta_debug_manager_la_LIBADD = \
$(GIO_LIBS) \
$(LIBANJUTA_LIBS)
# Marshallers
BUILT_SOURCES = \
anjuta-marshal.c \
anjuta-marshal.h
anjuta-marshal.h: anjuta-marshal.list
$(AM_V_GEN)glib-genmarshal $< --header --prefix=anjuta_marshal > $@
anjuta-marshal.c: anjuta-marshal.list
$(AM_V_GEN)echo "#include \"anjuta-marshal.h\"" > $@ && \
glib-genmarshal $< --body --prefix=anjuta_marshal >> $@
if GCONF_SCHEMAS_INSTALL
install-data-local: $(schema_DATA)
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $<
uninstall-local: $(schema_DATA)
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-uninstall-rule $<
else
install-data-local:
uninstall-local:
endif
libanjuta_debug_manager_la_SOURCES = \
$(BUILT_SOURCES) \
plugin.c \
plugin.h \
start.c \
start.h \
utilities.c \
utilities.h \
breakpoints.c \
breakpoints.h \
watch.c \
watch.h \
debug_tree.c \
debug_tree.h \
locals.c \
locals.h \
stack_trace.c \
stack_trace.h \
signals.c \
signals.h \
sharedlib.c \
sharedlib.h \
registers.c \
registers.h \
memory.c \
memory.h \
info.c \
info.h \
queue.c \
queue.h \
data_view.c \
data_view.h \
chunk_view.c \
chunk_view.h \
data_buffer.c \
data_buffer.h \
disassemble.c \
disassemble.h \
sparse_buffer.c \
sparse_buffer.h \
sparse_view.c \
sparse_view.h \
threads.c \
threads.h \
command.c \
command.h \
variable.c \
variable.h
EXTRA_DIST = \
$(plugin_in_files) \
$(anjuta_plugin_DATA) \
$(schema_in_files) \
$(schema_DATA) \
$(anjuta_ui_DATA) \
$(anjuta_glade_DATA) \
anjuta-marshal.list
DISTCLEANFILES = \
$(anjuta_plugin_DATA) \
$(schema_DATA)
SUBDIRS = \
images
-include $(top_srcdir)/git.mk
|