From 4218a6dc8b71192ab23dfebb334a9f123375cf3b Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 9 Jun 2021 18:04:57 -0400 Subject: sim: erc32/ppc: fix handling of $EXEEXT --- sim/erc32/ChangeLog | 4 ++++ sim/erc32/Makefile.in | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'sim/erc32') diff --git a/sim/erc32/ChangeLog b/sim/erc32/ChangeLog index a6cff9f..db08909 100644 --- a/sim/erc32/ChangeLog +++ b/sim/erc32/ChangeLog @@ -1,5 +1,9 @@ 2021-06-12 Mike Frysinger + * Makefile.in: Add $(EXEEXT) to sis. + +2021-06-12 Mike Frysinger + * aclocal.m4, config.in, configure: Regenerate. 2021-06-12 Mike Frysinger diff --git a/sim/erc32/Makefile.in b/sim/erc32/Makefile.in index f52daf7..5c29b0a 100644 --- a/sim/erc32/Makefile.in +++ b/sim/erc32/Makefile.in @@ -41,9 +41,9 @@ SIM_EXTRA_CFLAGS += -DFAST_UART -I$(srcroot) # `sis' doesn't need interf.o. SIS_OFILES = exec.o erc32.o func.o help.o float.o -all: sis -sis: sis.o $(SIS_OFILES) $(COMMON_OBJS) $(LIBDEPS) - $(CC) $(ALL_CFLAGS) -o sis \ +all: sis$(EXEEXT) +sis$(EXEEXT): sis.o $(SIS_OFILES) $(COMMON_OBJS) $(LIBDEPS) + $(CC) $(ALL_CFLAGS) -o sis$(EXEEXT) \ sis.o $(SIS_OFILES) $(COMMON_OBJS) $(EXTRA_LIBS) # Copy the files into directories where they will be run. -- cgit v1.1