* Makefile.in: Use CC_FOR_BUILD to build opc2c.
authorMasaki Muranaka <monaka@sourceware.org>
Sat, 4 Dec 2010 01:58:55 +0000 (01:58 +0000)
committerMasaki Muranaka <monaka@sourceware.org>
Sat, 4 Dec 2010 01:58:55 +0000 (01:58 +0000)
sim/m32c/ChangeLog
sim/m32c/Makefile.in

index 49dfa03a520b11845d9c65a6aa3b2a283f4926ea..89e6643737a90c340f39f74cbbbcafdab9834152 100644 (file)
@@ -1,3 +1,7 @@
+2010-12-04  Masaki Muranaka  <monaka@monami-software.com>
+
+       * Makefile.in: Use CC_FOR_BUILD to build opc2c.
+
 2010-05-26  Ozkan Sezer  <sezeroz@gmail.com>
 
        * main.c (setup_tcp_console): Check error return from socket() call
index c304ab8ac1ef3a546d438a8b6b26ace3db756c3b..18fc24f0afb7f371429adc04d95beefe29c85b14 100644 (file)
@@ -55,7 +55,7 @@ m32c.c : m32c.opc opc2c
        ./opc2c -l m32c.out $(srcdir)/m32c.opc > m32c.c
 
 opc2c : opc2c.o safe-fgets.o
-       $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@
+       $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $^ -o $@ $(BUILD_LIBS)
 
 sample.x : $(srcdir)/sample.S $(srcdir)/sample.ld
        ../../gcc/xgcc $(CPUFLAGS) -B../../gcc/ -c $(srcdir)/sample.S -o sample.o
@@ -82,10 +82,15 @@ load.o : load.h cpu.h mem.h
 main.o : cpu.h mem.h misc.h load.h
 mem.o : mem.h cpu.h syscalls.h
 misc.o : cpu.h misc.h
-opc2c.o : safe-fgets.h
 reg.o : cpu.h
-safe-fgets.o : safe-fgets.h
 srcdest.c : cpu.h mem.h
 syscalls.c : cpu.h mem.h syscalls.h
 
 r8c.o : cpu.h mem.h misc.h int.h
+
+opc2c.o : opc2c.c safe-fgets.h
+       $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/opc2c.c
+
+safe-fgets.o : safe-fgets.c safe-fgets.h
+       $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/safe-fgets.c
+
This page took 0.026508 seconds and 4 git commands to generate.