X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2FMakefile.am;fp=src%2FMakefile.am;h=6a3d91442543134448152bcedb00306df95226e5;hb=34f89e89320f83ec38ebf7257ddfe4d4a84b7cf0;hp=0000000000000000000000000000000000000000;hpb=3a0d577474f47cb857051247625d9fb7911d0f50;p=gconf-editor diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..6a3d914 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,62 @@ +INCLUDES = \ + -DLOCALEDIR=\""$(datadir)/locale"\" \ + -DDATADIR=\""$(pkgdatadir)"\" \ + -DICONDIR="\"$(pkgdatadir)/icons\"" \ + $(DISABLE_DEPRECATED_CFLAGS) \ + $(GCONF_EDITOR_CFLAGS) \ + $(GCONF_EDITOR_POLKIT_CFLAGS) + +bin_PROGRAMS = gconf-editor + +gconf_editor_built_headers = gconf-marshal.h +gconf_editor_built_cfiles = gconf-marshal.c + +gconf_editor_SOURCES = \ + gconf-bookmarks.c \ + gconf-bookmarks.h \ + gconf-bookmarks-dialog.c \ + gconf-bookmarks-dialog.h \ + gconf-cell-renderer.c \ + gconf-cell-renderer.h \ + gconf-editor-application.c \ + gconf-editor-application.h \ + gconf-editor-window.c \ + gconf-editor-window.h \ + gconf-key-editor.c \ + gconf-key-editor.h \ + gconf-list-model.c \ + gconf-list-model.h \ + gconf-policykit.c \ + gconf-policykit.h \ + gconf-stock-icons.c \ + gconf-stock-icons.h \ + gconf-tree-model.c \ + gconf-tree-model.h \ + gconf-util.c \ + gconf-util.h \ + gedit-output-window.c \ + gedit-output-window.h \ + gconf-search.h \ + gconf-search.c \ + gconf-search-dialog.h \ + gconf-search-dialog.c \ + main.c \ + $(gconf_editor_built_headers) \ + $(gconf_editor_built_cfiles) + +## we just punt on built sources, and check them into svn, manually updating +## when required. +regenerate-built-sources: + echo "Building gconf-marshal.h" \ + && @GLIB_GENMARSHAL@ --prefix=gconf_marshal gconf-marshal.list --header > gconf-marshal.h \ + && echo "Building gconf-marshal.c" \ + && echo "#include " > gconf-marshal.c \ + && @GLIB_GENMARSHAL@ --prefix=gconf_marshal gconf-marshal.list --body >> gconf-marshal.c + + +gconf_editor_LDADD = \ + $(GCONF_EDITOR_LIBS) \ + $(GCONF_EDITOR_POLKIT_LIBS) + +EXTRA_DIST = \ + gconf-marshal.list