make sure that gimp-console is enabled for 'make dist'. Use it to dump the

2004-07-12  Sven Neumann  <sven@gimp.org>

	* app/Makefile.am: make sure that gimp-console is enabled for
	'make dist'. Use it to dump the system gimprc and gimprc man-page.
This commit is contained in:
Sven Neumann 2004-07-12 17:14:02 +00:00 committed by Sven Neumann
parent a81e96450a
commit 8deb11ddf2
2 changed files with 22 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2004-07-12 Sven Neumann <sven@gimp.org>
* app/Makefile.am: make sure that gimp-console is enabled for
'make dist'. Use it to dump the system gimprc and gimprc man-page.
2004-07-12 Michael Natterer <mitch@gimp.org>
* app/text/gimptextundo.[ch]: removed member "guint time"...

View file

@ -206,9 +206,23 @@ endif
endif
# hooks to assure that the system gimprc and the gimprc manpage are
# uptodate when a release is made
# require gimp-console when making dist
#
if ENABLE_GIMP_CONSOLE
dist-check-gimp-console:
else
dist-check-gimp-console:
@echo "*** gimp-console must be enabled in order to make dist"
@false
endif
dist-hook: gimp-$(GIMP_APP_VERSION)$(EXEEXT)
# hook to assure that the system gimprc and the gimprc manpage are
# uptodate when a release is made
#
dist-dump-gimprc: gimp-console-$(GIMP_APP_VERSION)$(EXEEXT)
./$< --dump-gimprc-system > $(top_srcdir)/etc/gimprc
./$< --dump-gimprc-manpage > $(top_srcdir)/docs/gimprc.5.in
dist-hook: dist-check-gimp-console dist-dump-gimprc