diff options
author | Yves-Alexis Perez <corsac@debian.org> | 2015-03-22 06:18:07 -0700 |
---|---|---|
committer | Yves-Alexis Perez <corsac@debian.org> | 2015-03-22 06:18:07 -0700 |
commit | 8ea49fdb7ecf5b14d99fca09c57f6d988ff90739 (patch) | |
tree | b9bd6ff1471b3c3fcd73562c9825e5570a027de3 /Makefile.am | |
download | xfce4-session-8ea49fdb7ecf5b14d99fca09c57f6d988ff90739.tar.gz |
Import xfce4-session_4.12.1.orig.tar.bz2
[dgit import orig xfce4-session_4.12.1.orig.tar.bz2]
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..90910ce --- /dev/null +++ b/Makefile.am @@ -0,0 +1,50 @@ +SUBDIRS = \ + libxfsm \ + doc \ + engines \ + icons \ + po \ + settings \ + scripts \ + xfce4-session \ + xfce4-session-logout \ + xfsm-shutdown-helper + +desktopdir = $(XSESSION_PREFIX)/share/xsessions +desktop_in_files = xfce.desktop.in +desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) +@INTLTOOL_DESKTOP_RULE@ + +distuninstallcheck_listfiles = \ + find . -type f -print | grep -v ./share/icons/hicolor/icon-theme.cache + +EXTRA_DIST = \ + BUGS \ + intltool-extract.in \ + intltool-merge.in \ + intltool-update.in \ + $(config_DATA) \ + $(desktop_in_files) + +DISTCLEANFILES = \ + intltool-extract \ + intltool-merge \ + intltool-update \ + $(desktop_DATA) + +distclean-local: + rm -rf *.cache *~ + +.PHONY: ChangeLog + +ChangeLog: Makefile + (GIT_DIR=$(top_srcdir)/.git git log > .changelog.tmp \ + && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) \ + || (touch ChangeLog; echo 'Git directory not found: installing possibly empty changelog.' >&2) + +dist-hook: ChangeLog + +DISTCHECK_CONFIGURE_FLAGS = \ + --with-xsession-prefix=/tmp/$(PACKAGE)-distcheck + +# vi:set ts=8 sw=8 noet ai nocindent: |