Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Automatically re-configuring (same as "make reconfig") when Makefile.in, src/main.mk, or one of the autosetup files changes. This should avoid the need to recommend to people "re-run configure" whenever they call "fossil update" on this tree. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | wy-autoreconfig |
Files: | files | file ages | folders |
SHA3-256: | c649ba277058a5988abb632879210a7d |
User & Date: | wyoung 2017-10-11 01:16:05 |
Context
2017-10-11
| ||
01:23 | Small path fix to the new autoreconfigure Makefile rule. check-in: b923d800 user: wyoung tags: wy-autoreconfig | |
01:16 | Automatically re-configuring (same as "make reconfig") when Makefile.in, src/main.mk, or one of the autosetup files changes. This should avoid the need to recommend to people "re-run configure" whenever they call "fossil update" on this tree. check-in: c649ba27 user: wyoung tags: wy-autoreconfig | |
01:13 | Added "reconfig" target to the top-level Makefile, which uses an autosetup feature to re-run configure with the same options you gave manually. check-in: fd33b6a4 user: wyoung tags: wy-autoreconfig | |
Changes
Changes to Makefile.in.
50 51 52 53 54 55 56 |
include $(SRCDIR)/main.mk distclean: clean rm -f autoconfig.h config.log Makefile reconfig: @AUTOREMAKE@ |
> > > > > > > |
50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
include $(SRCDIR)/main.mk distclean: clean rm -f autoconfig.h config.log Makefile reconfig: @AUTOREMAKE@ # Reconfigure whenever an audiosetup file or one of the make source # files change, unless this is "make clean". ifeq ($(findstring clean,$(MAKECMDGOALS)),) Makefile: Makefile.in $(SRCDIR)/main.mk @AUTODEPS@ @AUTOREMAKE@ && $(MAKE) endif |