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
|
noinst_LTLIBRARIES = libdevhelp-2.la
dh_headers = \
dh-assistant.h \
dh-assistant-view.h \
dh-base.h \
dh-book-manager.h \
dh-book.h \
dh-book-tree.h \
dh-error.h \
dh-keyword-model.h \
dh-link.h \
dh-search.h \
dh-window.h
dh-enum-types.h: dh-enum-types.h.template $(dh_headers) $(GLIB_MKENUMS)
$(AM_V_GEN) (cd $(srcdir) && $(GLIB_MKENUMS) --template dh-enum-types.h.template $(dh_headers)) > $@
dh-enum-types.c: dh-enum-types.c.template $(dh_headers) $(GLIB_MKENUMS)
$(AM_V_GEN) (cd $(srcdir) && $(GLIB_MKENUMS) --template dh-enum-types.c.template $(dh_headers)) > $@
BUILT_SOURCES = \
dh-marshal.h \
dh-marshal.c \
dh-enum-types.h \
dh-enum-types.c
EXTRA_DIST = \
dh-marshal.list \
dh-enum-types.c.template \
dh-enum-types.h.template
libdevhelp_2_la_SOURCES = \
dh-assistant.c \
dh-assistant-view.c \
dh-base.c \
dh-book.c \
dh-book-manager.c \
dh-book-tree.c \
dh-enum-types.c \
dh-enum-types.h \
dh-error.c \
dh-keyword-model.c \
dh-link.c \
dh-marshal.c \
dh-marshal.h \
dh-parser.c \
dh-parser.h \
dh-preferences.c \
dh-preferences.h \
dh-search.c \
dh-util.c \
dh-util.h \
dh-window.c \
eggfindbar.c \
eggfindbar.h \
ige-conf.c \
ige-conf-gconf.c \
ige-conf.h \
ige-conf-private.h \
$(dh_headers)
libdevhelp_2_la_CPPFLAGS = \
-I$(top_srcdir) \
-DLOCALEDIR=\""$(datadir)/locale"\" \
-DDATADIR=\""$(datadir)"\" \
-DG_LOG_DOMAIN=\"Devhelp\" \
$(DEVHELP_CPPFLAGS)
libdevhelp_2_la_CFLAGS = \
$(DEVHELP_CFLAGS)
libdevhelp_2_la_LIBADD = \
$(DEVHELP_LIBS)
libdevhelp_2_la_LDFLAGS = \
-no-undefined
dh-marshal.h: dh-marshal.list
$(AM_V_GEN) $(GLIB_GENMARSHAL) $< --header --prefix=_dh_marshal dh-marshal.list > $@
dh-marshal.c: dh-marshal.list
$(AM_V_GEN) echo "#include \"dh-marshal.h\"" > $@ && \
$(GLIB_GENMARSHAL) $< --body --prefix=_dh_marshal dh-marshal.list >> $@
|