mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-13 19:06:54 +08:00
PR 10764
* Makefile.am (sysinfo.o, syslex.o): Place source file after all command line switches. * Makefile.in: Regenerate.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
2009-10-16 Jerker B<>ck <jerker.back@gmail.com>
|
||||||
|
|
||||||
|
PR 10764
|
||||||
|
* Makefile.am (sysinfo.o, syslex.o): Place source file after all
|
||||||
|
command line switches.
|
||||||
|
* Makefile.in: Regenerate.
|
||||||
|
|
||||||
2009-10-16 Yann Droneaud <yann@droneaud.fr>
|
2009-10-16 Yann Droneaud <yann@droneaud.fr>
|
||||||
|
|
||||||
PR 10768
|
PR 10768
|
||||||
|
@ -255,16 +255,16 @@ sysinfo$(EXEEXT_FOR_BUILD): sysinfo.o syslex.o
|
|||||||
|
|
||||||
syslex.o: syslex.c sysinfo.h config.h
|
syslex.o: syslex.c sysinfo.h config.h
|
||||||
if [ -r syslex.c ]; then \
|
if [ -r syslex.c ]; then \
|
||||||
$(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) syslex.c -Wno-error ; \
|
$(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) -Wno-error syslex.c ; \
|
||||||
else \
|
else \
|
||||||
$(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) $(srcdir)/syslex.c -Wno-error ;\
|
$(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) -Wno-error $(srcdir)/syslex.c ;\
|
||||||
fi
|
fi
|
||||||
|
|
||||||
sysinfo.o: sysinfo.c
|
sysinfo.o: sysinfo.c
|
||||||
if [ -r sysinfo.c ]; then \
|
if [ -r sysinfo.c ]; then \
|
||||||
$(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) sysinfo.c -Wno-error ; \
|
$(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) -Wno-error sysinfo.c ; \
|
||||||
else \
|
else \
|
||||||
$(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) $(srcdir)/sysinfo.c -Wno-error ; \
|
$(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) -Wno-error $(srcdir)/sysinfo.c ; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
bin2c$(EXEEXT_FOR_BUILD):
|
bin2c$(EXEEXT_FOR_BUILD):
|
||||||
|
@ -1197,16 +1197,16 @@ sysinfo$(EXEEXT_FOR_BUILD): sysinfo.o syslex.o
|
|||||||
|
|
||||||
syslex.o: syslex.c sysinfo.h config.h
|
syslex.o: syslex.c sysinfo.h config.h
|
||||||
if [ -r syslex.c ]; then \
|
if [ -r syslex.c ]; then \
|
||||||
$(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) syslex.c -Wno-error ; \
|
$(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) -Wno-error syslex.c ; \
|
||||||
else \
|
else \
|
||||||
$(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) $(srcdir)/syslex.c -Wno-error ;\
|
$(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) -Wno-error $(srcdir)/syslex.c ;\
|
||||||
fi
|
fi
|
||||||
|
|
||||||
sysinfo.o: sysinfo.c
|
sysinfo.o: sysinfo.c
|
||||||
if [ -r sysinfo.c ]; then \
|
if [ -r sysinfo.c ]; then \
|
||||||
$(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) sysinfo.c -Wno-error ; \
|
$(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) -Wno-error sysinfo.c ; \
|
||||||
else \
|
else \
|
||||||
$(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) $(srcdir)/sysinfo.c -Wno-error ; \
|
$(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) -Wno-error $(srcdir)/sysinfo.c ; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
bin2c$(EXEEXT_FOR_BUILD):
|
bin2c$(EXEEXT_FOR_BUILD):
|
||||||
|
Reference in New Issue
Block a user