* Makefile.tpl: Restore bkorb's style patch, accidentally lost
during replay. * Makefile.in: Regenerate.
This commit is contained in:
parent
c5e4bb704d
commit
52b809e489
|
@ -1,5 +1,9 @@
|
||||||
2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
|
2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
|
||||||
|
|
||||||
|
* Makefile.tpl: Restore bkorb's style patch, accidentally lost
|
||||||
|
during replay.
|
||||||
|
* Makefile.in: Regenerate.
|
||||||
|
|
||||||
(finishing slow-motion replay)
|
(finishing slow-motion replay)
|
||||||
* configure: Remove skip-this-dir support.
|
* configure: Remove skip-this-dir support.
|
||||||
* Makefile.tpl: Remove skip-this-dir support.
|
* Makefile.tpl: Remove skip-this-dir support.
|
||||||
|
|
24
Makefile.tpl
24
Makefile.tpl
|
@ -1,4 +1,4 @@
|
||||||
[+ AutoGen5 template
|
[+ AutoGen5 template -*- Mode: Makefile -*-
|
||||||
in
|
in
|
||||||
+]
|
+]
|
||||||
|
|
||||||
|
@ -527,18 +527,28 @@ GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS)
|
||||||
|
|
||||||
# This is a list of the configure targets for all of the modules which
|
# This is a list of the configure targets for all of the modules which
|
||||||
# are compiled using the target tools.
|
# are compiled using the target tools.
|
||||||
CONFIGURE_TARGET_MODULES = [+ FOR target_modules +]\
|
CONFIGURE_TARGET_MODULES =[+
|
||||||
configure-target-[+module+] [+ ENDFOR target_modules +]
|
FOR target_modules +] \
|
||||||
|
configure-target-[+module+][+
|
||||||
|
ENDFOR target_modules +]
|
||||||
|
|
||||||
configure-target: $(CONFIGURE_TARGET_MODULES)
|
configure-target: $(CONFIGURE_TARGET_MODULES)
|
||||||
|
|
||||||
# This is a list of the targets for which we can do a clean-{target}.
|
# This is a list of the targets for which we can do a clean-{target}.
|
||||||
CLEAN_MODULES = [+ FOR host_modules +][+ IF no_clean +][+ ELIF with_x +][+ ELSE clean +]\
|
CLEAN_MODULES =[+
|
||||||
clean-[+module+] [+ ENDIF no_clean +][+ ENDFOR host_modules +]
|
FOR host_modules +][+
|
||||||
|
IF (not (or (exist? "no_clean") (exist? "with_x"))) +] \
|
||||||
|
clean-[+module+][+
|
||||||
|
ENDIF no_clean +][+
|
||||||
|
ENDFOR host_modules +]
|
||||||
|
|
||||||
# All of the target modules that can be cleaned
|
# All of the target modules that can be cleaned
|
||||||
CLEAN_TARGET_MODULES = [+ FOR target_modules +][+ IF no_clean +][+ ELSE clean +]\
|
CLEAN_TARGET_MODULES =[+
|
||||||
clean-target-[+module+] [+ ENDIF no_clean +][+ ENDFOR target_modules +]
|
FOR target_modules +][+
|
||||||
|
IF (not (exist? "no_clean")) +] \
|
||||||
|
clean-target-[+module+][+
|
||||||
|
ENDIF no_clean +][+
|
||||||
|
ENDFOR target_modules +]
|
||||||
|
|
||||||
# All of the x11 modules that can be cleaned
|
# All of the x11 modules that can be cleaned
|
||||||
CLEAN_X11_MODULES = [+ FOR host_modules +][+ IF with_x +]\
|
CLEAN_X11_MODULES = [+ FOR host_modules +][+ IF with_x +]\
|
||||||
|
|
Loading…
Reference in New Issue