public inbox for newlib@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] libgloss/ft32: fix whitespace in Makefile
@ 2016-05-19 16:22 Yaakov Selkowitz
  2016-05-20  9:01 ` Corinna Vinschen
  0 siblings, 1 reply; 2+ messages in thread
From: Yaakov Selkowitz @ 2016-05-19 16:22 UTC (permalink / raw)
  To: newlib

Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
---
 libgloss/ft32/Makefile.in | 58 +++++++++++++++++++++++------------------------
 1 file changed, 29 insertions(+), 29 deletions(-)

diff --git a/libgloss/ft32/Makefile.in b/libgloss/ft32/Makefile.in
index 9db06ae..21f9e82 100644
--- a/libgloss/ft32/Makefile.in
+++ b/libgloss/ft32/Makefile.in
@@ -52,31 +52,31 @@ RANLIB = @RANLIB@
 AR_FLAGS = rc
 
 OBJDUMP = `if [ -f ${objroot}/../binutils/objdump ] ; \
-        then echo ${objroot}/../binutils/objdump ; \
-        else t='$(program_transform_name)'; echo objdump | sed -e $$t ; fi`
+	then echo ${objroot}/../binutils/objdump ; \
+	else t='$(program_transform_name)'; echo objdump | sed -e $$t ; fi`
 OBJCOPY = `if [ -f ${objroot}/../binutils/objcopy ] ; \
-        then echo ${objroot}/../binutils/objcopy ; \
-        else t='$(program_transform_name)'; echo objcopy | sed -e $$t ; fi`
+	then echo ${objroot}/../binutils/objcopy ; \
+	else t='$(program_transform_name)'; echo objcopy | sed -e $$t ; fi`
 
 LD_SCRIPTS = ft32-elf-common.ld sim.ld
 
 CRT0 = crt0.o
 SIM_BSP = libsim.a
 SIM_OBJS = fstat.o \
-           getpid.o \
-           isatty.o \
-           kill.o \
-           sbrk.o \
-           sim-close.o \
-           sim-exit.o \
-           sim-inbyte.o \
-           sim-lseek.o \
-           sim-open.o \
-           sim-read.o \
-           sim-time.o \
-           sim-unlink.o \
-           sim-write.o \
-           stat.o
+	   getpid.o \
+	   isatty.o \
+	   kill.o \
+	   sbrk.o \
+	   sim-close.o \
+	   sim-exit.o \
+	   sim-inbyte.o \
+	   sim-lseek.o \
+	   sim-open.o \
+	   sim-read.o \
+	   sim-time.o \
+	   sim-unlink.o \
+	   sim-write.o \
+	   stat.o
 
 #### Host specific Makefile fragment comes in here.
 @host_makefile_frag@
@@ -84,8 +84,8 @@ SIM_OBJS = fstat.o \
 all: $(CRT0) $(SIM_BSP)
 
 $(SIM_BSP): $(SIM_OBJS)
-        $(AR) $(ARFLAGS) $@ $?
-        $(RANLIB) $@
+	$(AR) $(ARFLAGS) $@ $?
+	$(RANLIB) $@
 
 fstat.o: $(srcdir)/fstat.c
 getpid.o: $(srcdir)/getpid.c
@@ -105,17 +105,17 @@ sim-write.o: $(srcdir)/sim-write.S
 stat.o: $(srcdir)/stat.c
 
 install: $($(CPU)_INSTALL)
-        $(INSTALL_DATA) $(CRT0) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(CRT0)
-        $(INSTALL_DATA) $(SIM_BSP) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(SIM_BSP)
-        for x in ${LD_SCRIPTS}; do \
-          ${INSTALL_DATA} ${srcdir}/$$x $(DESTDIR)${tooldir}/lib/$$x; \
-        done;
+	$(INSTALL_DATA) $(CRT0) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(CRT0)
+	$(INSTALL_DATA) $(SIM_BSP) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(SIM_BSP)
+	for x in ${LD_SCRIPTS}; do \
+	  ${INSTALL_DATA} ${srcdir}/$$x $(DESTDIR)${tooldir}/lib/$$x; \
+	done;
 
 clean mostlyclean:
-        rm -f *.o *.a
+	rm -f *.o *.a
 
 distclean maintainer-clean realclean: clean
-        rm -f Makefile config.cache config.log config.status
+	rm -f Makefile config.cache config.log config.status
 
 .PHONY: info dvi doc install-info clean-info
 info doc dvi:
@@ -123,7 +123,7 @@ install-info:
 clean-info:
 
 Makefile: Makefile.in config.status @host_makefile_frag_path@
-        $(SHELL) config.status
+	$(SHELL) config.status
 
 config.status: configure
-        $(SHELL) config.status --recheck
+	$(SHELL) config.status --recheck
-- 
2.8.0

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] libgloss/ft32: fix whitespace in Makefile
  2016-05-19 16:22 [PATCH] libgloss/ft32: fix whitespace in Makefile Yaakov Selkowitz
@ 2016-05-20  9:01 ` Corinna Vinschen
  0 siblings, 0 replies; 2+ messages in thread
From: Corinna Vinschen @ 2016-05-20  9:01 UTC (permalink / raw)
  To: newlib

[-- Attachment #1: Type: text/plain, Size: 343 bytes --]

On May 19 11:22, Yaakov Selkowitz wrote:
> Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
> ---
>  libgloss/ft32/Makefile.in | 58 +++++++++++++++++++++++------------------------
>  1 file changed, 29 insertions(+), 29 deletions(-)

Yes, please go ahead.


Thanks,
Corinna

-- 
Corinna Vinschen
Cygwin Maintainer
Red Hat

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-05-20  9:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-19 16:22 [PATCH] libgloss/ft32: fix whitespace in Makefile Yaakov Selkowitz
2016-05-20  9:01 ` Corinna Vinschen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).