diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2016-11-22 16:14:25 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2016-11-23 09:45:23 -0500 |
commit | 8629c02c0db6ff3f7444397567a57dd36a3eed41 (patch) | |
tree | c93dd2ed9bc0c1688d5efaa2f00a1af6582dc425 /gdb/gdbserver | |
parent | 03b62bbbce3dc5f15131d9e78f77d035cd1cffb3 (diff) | |
download | gdb-8629c02c0db6ff3f7444397567a57dd36a3eed41.zip gdb-8629c02c0db6ff3f7444397567a57dd36a3eed41.tar.gz gdb-8629c02c0db6ff3f7444397567a57dd36a3eed41.tar.bz2 |
Minor formatting fixups in Makefiles
Mostly some whitespace changes to make things a bit more consistent.
gdb/ChangeLog:
* Makefile.in: Fix whitespace formatting.
gdb/gdbserver/ChangeLog:
* Makefile.in: Fix whitespace formatting.
Diffstat (limited to 'gdb/gdbserver')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/gdbserver/Makefile.in | 24 |
2 files changed, 16 insertions, 12 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index e141021..701e22e 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,5 +1,9 @@ 2016-11-22 Simon Marchi <simon.marchi@polymtl.ca> + * Makefile.in: Fix whitespace formatting. + +2016-11-22 Simon Marchi <simon.marchi@polymtl.ca> + * Makefile.in (SFILES, OBS): Flatten list and order alphabetically. diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in index 261ab55..5316c95 100644 --- a/gdb/gdbserver/Makefile.in +++ b/gdb/gdbserver/Makefile.in @@ -54,7 +54,7 @@ RANLIB = @RANLIB@ CC = @CC@ CXX = @CXX@ -CXX_DIALECT= @CXX_DIALECT@ +CXX_DIALECT = @CXX_DIALECT@ AR = @AR@ AR_FLAGS = rc @@ -73,8 +73,8 @@ POSTCOMPILE = @true # Directory containing source files. Don't clean up the spacing, # this exact string is matched for by the "configure" script. srcdir = @srcdir@ -abs_top_srcdir=@abs_top_srcdir@ -abs_srcdir=@abs_srcdir@ +abs_top_srcdir = @abs_top_srcdir@ +abs_srcdir = @abs_srcdir@ VPATH = @srcdir@ # It is also possible that you will need to add -I/usr/include/sys to the @@ -83,11 +83,11 @@ VPATH = @srcdir@ # Set this up with gcc if you have gnu ld and the loader will print out # line numbers for undefinded refs. -#CC_LD=g++ -static -CC_LD=$(CXX) $(CXX_DIALECT) +#CC_LD = g++ -static +CC_LD = $(CXX) $(CXX_DIALECT) # Where is the "include" directory? Traditionally ../include or ./include -INCLUDE_DIR = ${srcdir}/../../include +INCLUDE_DIR = ${srcdir}/../../include INCLUDE_DEP = $$(INCLUDE_DIR) LIBIBERTY_BUILDDIR = build-libiberty-gdbserver @@ -137,10 +137,10 @@ CXXFLAGS = @CXXFLAGS@ CPPFLAGS = @CPPFLAGS@ # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros. -INTERNAL_CFLAGS_BASE = ${CXXFLAGS} ${GLOBAL_CFLAGS} \ +INTERNAL_CFLAGS_BASE = ${CXXFLAGS} ${GLOBAL_CFLAGS} \ ${PROFILE_CFLAGS} ${INCLUDE_CFLAGS} ${CPPFLAGS} -INTERNAL_WARN_CFLAGS = ${INTERNAL_CFLAGS_BASE} $(WARN_CFLAGS) -INTERNAL_CFLAGS = ${INTERNAL_WARN_CFLAGS} $(WERROR_CFLAGS) -DGDBSERVER +INTERNAL_WARN_CFLAGS = ${INTERNAL_CFLAGS_BASE} $(WARN_CFLAGS) +INTERNAL_CFLAGS = ${INTERNAL_WARN_CFLAGS} $(WERROR_CFLAGS) -DGDBSERVER # LDFLAGS is specifically reserved for setting from the command line # when running make. @@ -386,12 +386,12 @@ gdbreplay$(EXEEXT): $(GDBREPLAY_OBS) $(LIBGNU) $(LIBIBERTY) $(CC_LD) $(INTERNAL_CFLAGS) $(INTERNAL_LDFLAGS) -o gdbreplay$(EXEEXT) $(GDBREPLAY_OBS) \ $(XM_CLIBS) $(LIBGNU) $(LIBIBERTY) -IPA_OBJS=ax-ipa.o tracepoint-ipa.o format-ipa.o utils-ipa.o \ +IPA_OBJS = ax-ipa.o tracepoint-ipa.o format-ipa.o utils-ipa.o \ regcache-ipa.o remote-utils-ipa.o common-utils-ipa.o \ tdesc-ipa.o print-utils-ipa.o rsp-low-ipa.o errors-ipa.o \ ${IPA_DEPFILES} -IPA_LIB=libinproctrace.so +IPA_LIB = libinproctrace.so $(IPA_LIB): $(IPA_OBJS) ${ADD_DEPS} ${CDEPS} rm -f $(IPA_LIB) @@ -526,7 +526,7 @@ stamp-xml: $(XML_DIR)/feature_to_c.sh Makefile $(XML_FILES) # GNU Make 3.63 has a different problem: it keeps tacking command line # overrides onto the definition of $(MAKE). This variable setting # will remove them. -MAKEOVERRIDES= +MAKEOVERRIDES = regdat_sh = $(srcdir)/../regformats/regdat.sh |