From f53974be00779107c0ce31d54cd8dfae244ea4a6 Mon Sep 17 00:00:00 2001
From: Steve Chamberlain <sac@cygnus>
Date: Mon, 4 Jan 1993 01:55:53 +0000
Subject: [PATCH] Allow srcdir builds

---
 sim/h8300/Makefile.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sim/h8300/Makefile.in b/sim/h8300/Makefile.in
index b84792dba6f..a5933514ba4 100644
--- a/sim/h8300/Makefile.in
+++ b/sim/h8300/Makefile.in
@@ -61,10 +61,10 @@ DEP = mkdep
 TARGETLIB = libsim.a
 
 run:	code.o run.o
-	$(CC) -o run code.o run.o ../bfd/libbfd.a ../libiberty/libiberty.a
+	cc -o run code.o run.o ../bfd/libbfd.a ../libiberty/libiberty.a
  
 code.c:p1.c p2.c p3.c
-	cat p1.c p2.c p3.c | cb >code.c
+	cat $(VPATH)/p1.c p2.c $(VPATH)/p3.c | cb >code.c
 	indent code.c
 
 p2.c:writecode
@@ -74,7 +74,7 @@ p2.c:writecode
 writecode:writecode.o
 
 writecode.o:writecode.c
-	$(CC) -g $(CSEARCH) -c writecode.c 
+	cc -g $(CSEARCH) -c $(VPATH)/writecode.c 
 
 
 
-- 
GitLab