1
0
mirror of https://git.savannah.gnu.org/git/gperf.git synced 2025-12-02 13:09:22 +00:00

build: Simplify last change.

* Makefile.in (doc/gperf.1): Simplify rule.
This commit is contained in:
Bruno Haible
2024-07-22 14:21:52 +02:00
parent 5d1c6f3e24
commit b76568199f
2 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2024-07-22 Bruno Haible <bruno@clisp.org>
build: Simplify last change.
* Makefile.in (doc/gperf.1): Simplify rule.
2024-07-21 Bruno Haible <bruno@clisp.org>
build: Fix failure of "./configure; make dist".

View File

@@ -109,9 +109,9 @@ dist : force
# Ensure that the manual page is up-to-date when "make dist" runs.
dist : doc/gperf.1
doc/gperf.1: $(srcdir)/src/options.cc
(cd lib && $(MAKE)) \
&& (cd src && $(MAKE) gperf$(EXEEXT)) \
&& (cd doc && $(MAKE) gperf.1)
cd lib && $(MAKE)
cd src && $(MAKE) gperf$(EXEEXT)
cd doc && $(MAKE) gperf.1
force :