aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-11-23 23:23:45 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-11-23 23:23:45 +0300
commit14e903bac93d80f48c0df252d0389c84bad77460 (patch)
tree221c2f7bac11c1dec54df5a77a1444ee1ef8ae62 /Makefile.am
parentf9f8d0c54d103995e2c8ccd42de8e5ca1cc931b2 (diff)
downloadlibmicrohttpd-14e903bac93d80f48c0df252d0389c84bad77460.tar.gz
libmicrohttpd-14e903bac93d80f48c0df252d0389c84bad77460.zip
Make sure that 'clean' target is not failed in 'po' subdir.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index a8eaa2cd..2a18787f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -53,7 +53,10 @@ po-files-pre-distdir: update-POTFILES.in renew-po-configure.ac
53# Clean in po directory only if po/Makefile was generated to avoid 53# Clean in po directory only if po/Makefile was generated to avoid
54# useless generation of po/Makefile only for 'clean' target 54# useless generation of po/Makefile only for 'clean' target
55clean-local: 55clean-local:
56 @ if test -f po/Makefile; then $(am__cd) po && $(MAKE) $(AM_MAKEFLAGS) clean || exit 1; fi; 56 @ if test -f po/Makefile; then \
57 $(MAKE) $(AM_MAKEFLAGS) po/Makefile && \
58 $(am__cd) po && $(MAKE) $(AM_MAKEFLAGS) clean || exit 1; \
59 fi;
57 60
58po/Makefile: $(srcdir_po)/Makefile.in.in $(srcdir_po)/Makevars $(srcdir_po)/POTFILES.in po/config.status 61po/Makefile: $(srcdir_po)/Makefile.in.in $(srcdir_po)/Makevars $(srcdir_po)/POTFILES.in po/config.status
59 @$(am__cd) po && @SHELL@ ./config.status ./Makefile.in po-directories 62 @$(am__cd) po && @SHELL@ ./config.status ./Makefile.in po-directories