• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Mercurial Queues Emulation for Git


Commit MetaInfo

Revisióna374e779152498377fa433d2b774dc8304fd2413 (tree)
Tiempo2019-06-29 01:32:12
AutorKeith Marshall <keith@user...>
CommiterKeith Marshall

Log Message

Add build system clean-up support.

* Makefile.in (clean, mostlyclean, distclean, maintainer-clean):
New rules; implement them.

Cambiar Resumen

Diferencia incremental

--- a/Makefile.in
+++ b/Makefile.in
@@ -330,5 +330,24 @@ bindist-licence: LICENCE FDL-1.3
330330 $(MKDIR_P) ${PACKAGE_DOCDIR}
331331 $(call INSTALL_SCRIPTS,$^,-m 644,${PACKAGE_DOCDIR})
332332
333+
334+# Clean-Up
335+# ========
336+#
337+clean mostlyclean:
338+ rm -f $(addprefix git-,$(mq_supported)) pre-commit *pre-commit*.sh
339+
340+distclean: clean
341+ rm -f config.status config.log Makefile git-mq-setup.shar
342+ rm -rf tmp *.1 *.ps *.pdf
343+
344+maintainer-clean-warning:
345+ $(warning $(MAKE) $(@:%-warning=%))
346+ $(warning This command should be used by package maintainers only;)
347+ $(warning it deletes files which may require special tools to rebuild.)
348+
349+maintainer-clean: maintainer-clean-warning distclean
350+ rm -rf ${srcdir}/autom4te.cache
351+
333352 # ------------------------------------------------------------------------------
334353 # $RCSfile$: end of file