diff options
author | Paul Brook <paul@codesourcery.com> | 2005-04-28 01:46:48 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2005-04-28 01:46:48 +0000 |
commit | 1ad22dbf5947506f190c3b8d5b4c70ba92e23076 (patch) | |
tree | d9a160d898f35604b084e6f312022b70b03649fe | |
parent | 3ea76df54bad2decc93548ed2e3f1d8017ae5733 (diff) | |
download | gdb-1ad22dbf5947506f190c3b8d5b4c70ba92e23076.zip gdb-1ad22dbf5947506f190c3b8d5b4c70ba92e23076.tar.gz gdb-1ad22dbf5947506f190c3b8d5b4c70ba92e23076.tar.bz2 |
2005-04-27 Paul Brook <paul@codesourcery.com>
* sim/common/Make-common.in: Add $(EXEEXT) to "run".
-rw-r--r-- | ChangeLog.csl | 4 | ||||
-rw-r--r-- | sim/common/Make-common.in | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog.csl b/ChangeLog.csl index 1e8fdb1..903a0c1 100644 --- a/ChangeLog.csl +++ b/ChangeLog.csl @@ -1,3 +1,7 @@ +2005-04-27 Paul Brook <paul@codesourcery.com> + + * sim/common/Make-common.in: Add $(EXEEXT) to "run". + 2005-04-25 Paul Brook <paul@codesourcery.com> * gdb/configure.tgt: Don't build rdi-share library. diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index edcb1d2..ed35cf6 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -252,14 +252,14 @@ RUNTESTFLAGS = callback_h = $(srcroot)/include/gdb/callback.h remote_sim_h = $(srcroot)/include/gdb/remote-sim.h -all: $(SIM_EXTRA_ALL) libsim.a run .gdbinit +all: $(SIM_EXTRA_ALL) libsim.a run$(EXEEXT) .gdbinit libsim.a: $(LIB_OBJS) rm -f libsim.a $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS) $(RANLIB) libsim.a -run: $(SIM_RUN_OBJS) libsim.a $(LIBDEPS) +run$(EXEEXT): $(SIM_RUN_OBJS) libsim.a $(LIBDEPS) $(CC) $(ALL_CFLAGS) -o run$(EXEEXT) \ $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS) @@ -646,7 +646,7 @@ TAGS: force clean: $(SIM_EXTRA_CLEAN) rm -f *.[oa] *~ core - rm -f run libsim.a + rm -f run$(EXEEXT) libsim.a rm -f gentmap targ-map.c targ-vals.h stamp-tvals if [ ! -f Make-common.in ] ; then \ rm -f $(BUILT_SRC_FROM_COMMON) ; \ |