diff options
author | Martin Hunt <hunt@redhat.com> | 1996-08-29 00:35:11 +0000 |
---|---|---|
committer | Martin Hunt <hunt@redhat.com> | 1996-08-29 00:35:11 +0000 |
commit | d70b4d426ba96845c0a40138c5d3ee05ac279ca5 (patch) | |
tree | 3608600955a1dde8fc42f76e745e760847636a4c /sim/d10v/Makefile.in | |
parent | e7dd77751d79943b39a1d2308678d28309a000e1 (diff) | |
download | gdb-d70b4d426ba96845c0a40138c5d3ee05ac279ca5.zip gdb-d70b4d426ba96845c0a40138c5d3ee05ac279ca5.tar.gz gdb-d70b4d426ba96845c0a40138c5d3ee05ac279ca5.tar.bz2 |
Wed Aug 28 17:33:19 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
* Makefile.in, d10v_sim.h, interp.c: Fix byte-order problems.
Diffstat (limited to 'sim/d10v/Makefile.in')
-rw-r--r-- | sim/d10v/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sim/d10v/Makefile.in b/sim/d10v/Makefile.in index 393cc61..ea296b1 100644 --- a/sim/d10v/Makefile.in +++ b/sim/d10v/Makefile.in @@ -56,7 +56,7 @@ INSTALL_XFORM1= $(INSTALL_XFORM) -b=.1 AR = @AR@ AR_FLAGS = rc CC = @CC@ -CFLAGS = @CFLAGS@ +CFLAGS = @CFLAGS@ @DEFS@ MAKEINFO = makeinfo RANLIB = @RANLIB@ CC_FOR_BUILD = @CC_FOR_BUILD@ @@ -77,7 +77,7 @@ CSEARCH = -I. -I$(srcdir) -I../../include \ -I../../bfd -I$(INCDIR) -I$(srcdir)/../../bfd -I$(srcdir)/../../gdb -I$(srcdir)/../../newlib/libc/sys/sh DEP = mkdep -all: run +all: run libsim.a run: interp.o $(X) run.o table.o callback.o simops.o $(CC) $(CFLAGS) -o run $(X) interp.o table.o callback.o simops.o run.o ../../bfd/libbfd.a ../../libiberty/libiberty.a $(XL) -lm @@ -86,7 +86,7 @@ interp.o:interp.c table.c run.o:run.c libsim.a:interp.o table.o simops.o - $(AR) $(ARFLAGS) libsim.a interp.o table.o + $(AR) $(ARFLAGS) libsim.a interp.o table.o simops.o $(RANLIB) libsim.a simops.h: gencode @@ -95,7 +95,7 @@ simops.h: gencode table.c: gencode simops.h ./gencode >$@ -gencode: gencode.c +gencode: gencode.c ../../opcodes/libopcodes.a $(CC) $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHE) -o gencode $(srcdir)/gencode.c ../../opcodes/libopcodes.a -lc .c.o: @@ -114,7 +114,7 @@ TAGS: force clean: rm -f *.[oa] *~ core *.E *.p *.ip aout-params.h gen-aout - rm -f run libsim.a + rm -f run table.c simops.h gencode libsim.a distclean mostlyclean maintainer-clean realclean: clean rm -f TAGS |