diff options
author | Perberos <[email protected]> | 2011-11-07 16:46:58 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-07 16:46:58 -0300 |
commit | 528c1e5ff51e213936e800fc5a9a25da99c0bdf2 (patch) | |
tree | 77f8aa456b09367ba81f04d4562fc935f898a951 /data/Makefile.am | |
download | pluma-528c1e5ff51e213936e800fc5a9a25da99c0bdf2.tar.bz2 pluma-528c1e5ff51e213936e800fc5a9a25da99c0bdf2.tar.xz |
initial
Diffstat (limited to 'data/Makefile.am')
-rwxr-xr-x | data/Makefile.am | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am new file mode 100755 index 00000000..0a09ccaf --- /dev/null +++ b/data/Makefile.am @@ -0,0 +1,49 @@ +desktopdir = $(datadir)/applications +desktop_in_files = gedit.desktop.in +desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) +@INTLTOOL_DESKTOP_RULE@ + +schemasdir = $(MATECONF_SCHEMA_FILE_DIR) +schemas_in_files = gedit.schemas.in +schemas_DATA = $(schemas_in_files:.schemas.in=.schemas) +@INTLTOOL_SCHEMAS_RULE@ + +man_MANS = gedit.1 + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = gedit-@[email protected] + +gedit-@[email protected]: gedit.pc + cp gedit.pc gedit-@[email protected] + +bugreportdir = $(libexecdir)/gedit-2 +bugreport_SCRIPTS = gedit-bugreport.sh + +if MATECONF_SCHEMAS_INSTALL +install-data-local: + if test -z "$(DESTDIR)" ; then \ + for p in $(schemas_DATA) ; do \ + MATECONF_CONFIG_SOURCE=$(MATECONF_SCHEMA_CONFIG_SOURCE) $(MATECONFTOOL) --makefile-install-rule $(top_builddir)/data/$$p ; \ + done \ + fi +else +install-data-local: +endif + +EXTRA_DIST = \ + $(desktop_in_files) \ + $(schemas_in_files) \ + gedit.schemas.in.in \ + $(man_MANS) \ + gedit.pc.in \ + gedit-bugreport.sh.in + +CLEANFILES = \ + $(desktop_DATA) \ + $(schemas_DATA) \ + $(pkgconfig_DATA) + + + + +-include $(top_srcdir)/git.mk |