X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=libview%2FMakefile.am;h=b4edc579426e67446675ad0435faf41cd0d1f420;hb=5a058f12f1606d6d87c9ed592df93b33235d3766;hp=0bf23d04267f76842b15048c9b11d7453fc87bef;hpb=2db28e7ad29cc276902da68789e897537ff17912;p=evince.git diff --git a/libview/Makefile.am b/libview/Makefile.am index 0bf23d04..b4edc579 100644 --- a/libview/Makefile.am +++ b/libview/Makefile.am @@ -2,19 +2,23 @@ lib_LTLIBRARIES = libevview.la NOINST_H_FILES = \ ev-annotation-window.h \ + ev-page-cache.h \ ev-pixbuf-cache.h \ ev-timeline.h \ ev-transition-animation.h \ ev-view-accessible.h \ + ev-view-cursor.h \ ev-view-marshal.h \ ev-view-private.h INST_H_FILES = \ + ev-document-model.h \ ev-jobs.h \ ev-job-scheduler.h \ - ev-page-cache.h \ + ev-print-operation.h \ ev-stock-icons.h \ ev-view.h \ + ev-view-presentation.h \ ev-view-type-builtins.h headerdir = $(includedir)/evince/$(EV_API_VERSION)/libview @@ -22,16 +26,20 @@ header_DATA = $(INST_H_FILES) libevview_la_SOURCES = \ ev-annotation-window.c \ + ev-document-model.c \ ev-jobs.c \ ev-job-scheduler.c \ ev-page-cache.c \ ev-pixbuf-cache.c \ + ev-print-operation.c \ ev-stock-icons.c \ ev-timeline.c \ ev-transition-animation.c \ ev-view.c \ ev-view-accessible.c \ ev-view-marshal.c \ + ev-view-cursor.c \ + ev-view-presentation.c \ ev-view-type-builtins.c \ $(NOINST_H_FILES) \ $(INST_H_FILES) @@ -71,23 +79,23 @@ BUILT_SOURCES = \ CLEANFILES = $(BUILT_SOURCES) stamp-ev-view-type-builtins.h ev-view-marshal.h: $(srcdir)/ev-view-marshal.list - $(GLIB_GENMARSHAL) --prefix=ev_view_marshal $(srcdir)/ev-view-marshal.list --header --internal > $@ + $(AM_V_GEN)$(GLIB_GENMARSHAL) --prefix=ev_view_marshal $(srcdir)/ev-view-marshal.list --header --internal > $@ ev-view-marshal.c: $(srcdir)/ev-view-marshal.list echo '#include ' > ev-view-marshal.c - $(GLIB_GENMARSHAL) --prefix=ev_view_marshal $(srcdir)/ev-view-marshal.list --header --internal --body >> $@ + $(AM_V_GEN)$(GLIB_GENMARSHAL) --prefix=ev_view_marshal $(srcdir)/ev-view-marshal.list --header --internal --body >> $@ ev-view-type-builtins.h: stamp-ev-view-type-builtins.h @true stamp-ev-view-type-builtins.h: ev-view-type-builtins.h.template $(INST_H_FILES) - $(GLIB_MKENUMS) --template $< $(filter-out $<,$^) > xgen-etbh \ + $(AM_V_GEN)$(GLIB_MKENUMS) --template $< $(filter-out $<,$^) > xgen-etbh \ && (cmp -s xgen-etbh ev-view-type-builtins.h || cp xgen-etbh ev-view-type-builtins.h ) \ && rm -f xgen-etbh \ && echo timestamp > $(@F) ev-view-type-builtins.c: ev-view-type-builtins.c.template $(INST_H_FILES) - $(GLIB_MKENUMS) --template $< $(filter-out $<,$^) > xgen-etbc \ + $(AM_V_GEN)$(GLIB_MKENUMS) --template $< $(filter-out $<,$^) > xgen-etbc \ && (cmp -s xgen-etbc ev-view-type-builtins.c || cp xgen-etbc ev-view-type-builtins.c ) \ && rm -f xgen-etbc @@ -101,7 +109,7 @@ EXTRA_DIST = \ if ENABLE_INTROSPECTION EvinceView-$(EV_API_VERSION).gir: libevview.la Makefile $(INST_H_FILES) - PKG_CONFIG_PATH=$(top_builddir):$$PKG_CONFIG_PATH \ + $(AM_V_GEN) PKG_CONFIG_PATH=$(top_builddir):$$PKG_CONFIG_PATH \ $(G_IR_SCANNER) -v --namespace EvinceView \ --add-include-path=$(top_builddir)/libdocument \ --strip-prefix=Ev \ @@ -114,7 +122,7 @@ EvinceView-$(EV_API_VERSION).gir: libevview.la Makefile $(INST_H_FILES) --include=Gtk-2.0 \ --include=EvinceDocument-$(EV_API_VERSION) \ --library=evview \ - --libtool="$(SHAVE_SAVED_LIBTOOL)" \ + --libtool="$(LIBTOOL)" \ --output $@ \ --pkg evince-document-$(EV_API_VERSION) \ --pkg evince-view-$(EV_API_VERSION) \ @@ -133,10 +141,12 @@ EXTRA_DIST += $(gir_DATA) CLEANFILES += $(gir_DATA) $(typelibs_DATA) %.typelib: %.gir - LD_LIBRARY_PATH=$${LD_LIBRARY_PATH:+$$LD_LIBRARY_PATH:}. $(G_IR_COMPILER) \ + $(AM_V_GEN) LD_LIBRARY_PATH=$${LD_LIBRARY_PATH:+$$LD_LIBRARY_PATH:}. $(G_IR_COMPILER) \ --includedir=$(srcdir) \ --includedir=$(top_builddir)/libdocument \ $(G_IR_COMPILER_OPTS) \ $< -o $@ endif # ENABLE_INTROSPECTION + +-include $(top_srcdir)/git.mk