From 23ba7a93670d8fb1d0eaa483c2c52e6d407e5747 Mon Sep 17 00:00:00 2001 From: Mahesh Radhakrishnan Date: Mon, 16 Sep 2019 10:41:13 -0400 Subject: [PATCH] PRSDK-5675: Renaming the .exe targets to .bin targets for compatibility with .exe files present --- src/util/btoccs/Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/util/btoccs/Makefile b/src/util/btoccs/Makefile index 0c489f6..7fb4028 100644 --- a/src/util/btoccs/Makefile +++ b/src/util/btoccs/Makefile @@ -33,28 +33,28 @@ #* -all: b2ccs.exe b2i2c.exe ccs2b.exe bfaddsect.exe bfmerge.exe ccs2bin.exe +all: b2ccs.bin b2i2c.bin ccs2b.bin bfaddsect.bin bfmerge.bin ccs2bin.bin -b2ccs.exe: b2ccs.c +b2ccs.bin: b2ccs.c gcc -o b2ccs b2ccs.c -b2i2c.exe: b2i2c.c +b2i2c.bin: b2i2c.c gcc -o b2i2c b2i2c.c -ccs2b.exe: ccs2b.c +ccs2b.bin: ccs2b.c gcc -o ccs2b ccs2b.c -bfaddsect.exe: bfaddsect.c +bfaddsect.bin: bfaddsect.c gcc -o bfaddsect bfaddsect.c -bfmerge.exe: bfmerge.c +bfmerge.bin: bfmerge.c gcc -o bfmerge bfmerge.c -ccs2bin.exe: ccs2bin.c +ccs2bin.bin: ccs2bin.c gcc -o ccs2bin ccs2bin.c clean: - -rm -f b2ccs b2i2c ccs2b bfaddsect bfmerge ccs2bin *.exe + -rm -f b2ccs b2i2c ccs2b bfaddsect bfmerge ccs2bin -- 2.26.2