54
55
56
57
58
59
60
61
62
63
|
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
|
|
|
|
54
55
56
57
58
59
60
61
62
63
|
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: @srcdir@/Makefile.in $(SRCDIR)/main.mk @AUTODEPS@
$(MAKE) reconfig
endif
|