changeset 562:5d2c1bfc04aa

Rename EXEEXT to BINEXT in the build system.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 06 Jan 2020 12:39:44 +0200
parents 7dce38c022d7
children 7cb58b683677
files Makefile Makefile.cross-mingw Makefile.gen
diffstat 3 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Sun Jan 05 23:56:22 2020 +0200
+++ b/Makefile	Mon Jan 06 12:39:44 2020 +0200
@@ -8,7 +8,7 @@
 PREFIX = /usr/local
 BINPATH = ./
 OBJPATH = obj/unix/
-EXEEXT =
+BINEXT =
 
 # Compiler flags and linker flags
 CFLAGS += -DHAVE_CONFIG_H
@@ -23,7 +23,7 @@
 ###
 ### Unix targets
 ###
-ENDIANCHK_BIN = $(BINPATH)endianchk$(EXEEXT)
+ENDIANCHK_BIN = $(BINPATH)endianchk$(BINEXT)
 NOINST_TARGETS += $(ENDIANCHK_BIN) config.h
 THLIBS_DEP += config.h
 
--- a/Makefile.cross-mingw	Sun Jan 05 23:56:22 2020 +0200
+++ b/Makefile.cross-mingw	Mon Jan 06 12:39:44 2020 +0200
@@ -22,7 +22,7 @@
 # Miscellaneous
 PREFIX =
 BINPATH = ./
-EXEEXT = .exe
+BINEXT = .exe
 
 # Compiler flags and linker flags
 CFLAGS += \
--- a/Makefile.gen	Sun Jan 05 23:56:22 2020 +0200
+++ b/Makefile.gen	Mon Jan 06 12:39:44 2020 +0200
@@ -17,7 +17,7 @@
 
 
 TESTS_OBJ=tests.o
-TESTS_BIN=$(BINPATH)tests$(EXEEXT)
+TESTS_BIN=$(BINPATH)tests$(BINEXT)
 
 TARGETS += $(TESTS_BIN)