diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2002-12-02 03:26:59 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2002-12-02 03:26:59 +0000 |
commit | 52d7cdeeeac14e9d5a8fa8f94ba268f26a6deebe (patch) | |
tree | da24a2cab273c51645c96a306815a0941dc1617e /Makefile.tpl | |
parent | 930314a457cfae2a40fe24adc62a46da980ece7b (diff) | |
download | gdb-52d7cdeeeac14e9d5a8fa8f94ba268f26a6deebe.zip gdb-52d7cdeeeac14e9d5a8fa8f94ba268f26a6deebe.tar.gz gdb-52d7cdeeeac14e9d5a8fa8f94ba268f26a6deebe.tar.bz2 |
* Makefile.tpl: Restore bkorb's style patch, accidentally lost
during replay.
* Makefile.in: Regenerate.
Diffstat (limited to 'Makefile.tpl')
-rw-r--r-- | Makefile.tpl | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index 45181c1..af1b913 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -1,4 +1,4 @@ -[+ AutoGen5 template +[+ AutoGen5 template -*- Mode: Makefile -*- 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 # are compiled using the target tools. -CONFIGURE_TARGET_MODULES = [+ FOR target_modules +]\ - configure-target-[+module+] [+ ENDFOR target_modules +] +CONFIGURE_TARGET_MODULES =[+ + FOR target_modules +] \ + configure-target-[+module+][+ + ENDFOR target_modules +] configure-target: $(CONFIGURE_TARGET_MODULES) # 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-[+module+] [+ ENDIF no_clean +][+ ENDFOR host_modules +] +CLEAN_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 -CLEAN_TARGET_MODULES = [+ FOR target_modules +][+ IF no_clean +][+ ELSE clean +]\ - clean-target-[+module+] [+ ENDIF no_clean +][+ ENDFOR target_modules +] +CLEAN_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 CLEAN_X11_MODULES = [+ FOR host_modules +][+ IF with_x +]\ |