mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
6c2d5f855f
Thus, if I edit e.g. the CFLAGS settings in configure.in: - Makefile runs autoconf to update configure. - Makefile runs config.status --recheck to update config.status. - Makefile runs config.status to update Makefile.config. (GNU Make implicitly tries to keep included makefiles up to date.) - src/**/Makefile use the CFLAGS from the updated Makefile.config. (Source files will not be automatically recompiled, however. If that is ever implemented, Makefile.config should be given a separate timestamp file like config.h has.)
59 lines
1.7 KiB
Makefile
59 lines
1.7 KiB
Makefile
top_builddir=.
|
|
-include $(top_builddir)/Makefile.config
|
|
|
|
SUBDIRS = doc src
|
|
SUBDIRS-$(CONFIG_NLS) += po
|
|
CLEAN = features.log
|
|
|
|
all-recursive: config.h
|
|
|
|
# Automagically rerun autotools
|
|
$(top_builddir)/config.status: $(top_srcdir)/configure
|
|
cd $(top_builddir) && $(SHELL) ./config.status --recheck
|
|
|
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
$(ACLOCAL_M4): $(top_srcdir)/configure.in $(top_srcdir)/acinclude.m4
|
|
cd $(top_srcdir) && $(ACLOCAL)
|
|
|
|
$(top_srcdir)/configure: $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
|
cd $(top_srcdir) && $(AUTOCONF)
|
|
|
|
# Makefile.config doesn't need a separate timestamp file because
|
|
# touching it doesn't directly cause other files to be rebuilt.
|
|
$(top_builddir)/Makefile.config: $(top_srcdir)/Makefile.config.in $(top_builddir)/config.status
|
|
cd $(top_builddir) \
|
|
&& CONFIG_FILES=Makefile.config CONFIG_HEADERS= \
|
|
$(SHELL) ./config.status
|
|
|
|
$(top_builddir)/config.h: $(top_builddir)/stamp-h
|
|
@cd $(top_builddir) && \
|
|
if test ! -f $@; then \
|
|
rm -f stamp-h; \
|
|
$(MAKE) stamp-h; \
|
|
else :; fi
|
|
|
|
$(top_builddir)/stamp-h: $(top_srcdir)/config.h.in $(top_builddir)/config.status
|
|
cd $(top_builddir) \
|
|
&& CONFIG_FILES= CONFIG_HEADERS=config.h \
|
|
$(SHELL) ./config.status
|
|
@echo timestamp > stamp-h 2> /dev/null
|
|
|
|
$(top_srcdir)/config.h.in: $(top_srcdir)/stamp-h.in
|
|
@if test ! -f $@; then \
|
|
rm -f $(top_srcdir)/stamp-h.in; \
|
|
$(MAKE) $(top_srcdir)/stamp-h.in; \
|
|
else :; fi
|
|
|
|
$(top_srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
|
cd $(top_srcdir) && $(AUTOHEADER)
|
|
@echo timestamp > $(top_srcdir)/stamp-h.in 2> /dev/null
|
|
|
|
|
|
ifeq ($(wildcard Makefile.config),)
|
|
# Catch all
|
|
$(MAKECMDGOALS) default:
|
|
@echo "You need to first run ./configure"
|
|
else
|
|
include $(top_srcdir)/Makefile.lib
|
|
endif
|