diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-12-09 01:40:28 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-12-09 01:40:28 -0500 |
commit | de8a2781a57ecb4a852fb5b734bc7ce71bad34c9 (patch) | |
tree | 5dd1a01b1d2c0b7e487ce7e2ffc52ad519da1b13 /sim/Makefile.am | |
parent | df5ad102009c41ab4dfadbb8cfb8c8b2a02a4f78 (diff) | |
download | gdb-de8a2781a57ecb4a852fb5b734bc7ce71bad34c9.zip gdb-de8a2781a57ecb4a852fb5b734bc7ce71bad34c9.tar.gz gdb-de8a2781a57ecb4a852fb5b734bc7ce71bad34c9.tar.bz2 |
sim: use ## for automake comments
The ## marker tells automake to not include the comment in its
generated output, so use that in most places where the comment
only makes sense in the inputs.
Diffstat (limited to 'sim/Makefile.am')
-rw-r--r-- | sim/Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sim/Makefile.am b/sim/Makefile.am index b58f50a..13d0c3a 100644 --- a/sim/Makefile.am +++ b/sim/Makefile.am @@ -1,5 +1,5 @@ ## Process this file with automake to generate Makefile.in -# +## # Copyright (C) 1993-2021 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -26,8 +26,8 @@ SUBDIRS = @subdirs@ $(SIM_SUBDIRS) SIM_PRIMARY_TARGET = @SIM_PRIMARY_TARGET@ AM_MAKEFLAGS = SIM_PRIMARY_TARGET=$(SIM_PRIMARY_TARGET) -# We don't set some of these vars here, but we need to define them so they may -# be used consistently in local.mk files we include below. +## We don't set some of these vars here, but we need to define them so they may +## be used consistently in local.mk files we include below. pkginclude_HEADERS = check_PROGRAMS = noinst_LIBRARIES = @@ -45,8 +45,8 @@ AM_CPPFLAGS = \ COMPILE_FOR_BUILD = $(CC_FOR_BUILD) $(AM_CPPFLAGS) $(CFLAGS_FOR_BUILD) LINK_FOR_BUILD = $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ -# Deps to add to the all-recursive target. These are built before descending -# into any subdirs. +## Deps to add to the all-recursive target. These are built before descending +## into any subdirs. SIM_ALL_RECURSIVE_DEPS = # Generate target constants for newlib/libgloss from its source tree. |