mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 06:31:56 +00:00
run config.status instead of configure when the Makefiles are out of date. This
way, configure options don't get lost. Unfortunatly, config.status gets called four times :(
This commit is contained in:
parent
736ded3bfb
commit
98f440fd51
1 changed files with 8 additions and 3 deletions
11
Makefile.in
11
Makefile.in
|
@ -49,13 +49,18 @@ configure: configure.in acconfig.h
|
|||
|
||||
Makefile: Makefile.in configure \
|
||||
qw_client/Makefile qw_server/Makefile uquake/Makefile
|
||||
$(SHELL) ./config.status --recheck
|
||||
$(SHELL) ./config.status
|
||||
|
||||
qw_client/Makefile: qw_client/Makefile.in configure
|
||||
./configure
|
||||
$(SHELL) ./config.status --recheck
|
||||
$(SHELL) ./config.status
|
||||
|
||||
qw_server/Makefile: qw_server/Makefile.in configure
|
||||
./configure
|
||||
$(SHELL) ./config.status --recheck
|
||||
$(SHELL) ./config.status
|
||||
|
||||
uquake/Makefile: uquake/Makefile.in configure
|
||||
./configure
|
||||
$(SHELL) ./config.status --recheck
|
||||
$(SHELL) ./config.status
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue