Makefile.am 670 B

1234567891011121314151617181920212223242526272829303132333435
  1. SUBDIRS = \
  2. common \
  3. panel-plugin \
  4. icons \
  5. themes \
  6. po
  7. distclean-local:
  8. rm -rf *.cache *~
  9. rpm: dist
  10. rpmbuild -ta $(PACKAGE)-$(VERSION).tar.gz
  11. @rm -f $(PACKAGE)-$(VERSION).tar.gz
  12. .PHONY: ChangeLog
  13. ChangeLog: Makefile
  14. (GIT_DIR=$(top_srcdir)/.git git log > .changelog.tmp \
  15. && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) \
  16. || (touch ChangeLog; echo 'Git directory not found: installing possibly empty changelog.' >&2)
  17. dist-hook: ChangeLog
  18. EXTRA_DIST = \
  19. intltool-extract.in \
  20. intltool-merge.in \
  21. intltool-update.in
  22. DISTCLEANFILES = \
  23. intltool-extract \
  24. intltool-merge \
  25. intltool-update
  26. # vi:set ts=8 sw=8 noet ai nocindent syntax=automake: