# HG changeset patch # User Matti Hamalainen # Date 1578307257 -7200 # Node ID f1df1cf69a3849259179147dc0769b562c3f1a0f # Parent 788a58dab07a154f02c7bc727f20c6cdd0d0e340 Rename EXEEXT to BINEXT in the build system, as per changes in th-libs build system. diff -r 788a58dab07a -r f1df1cf69a38 Makefile.gen --- a/Makefile.gen Sun Jan 05 20:48:15 2020 +0200 +++ b/Makefile.gen Mon Jan 06 12:40:57 2020 +0200 @@ -22,7 +22,7 @@ THLIBS_OBJ=th_util.o th_string.o th_args.o th_ioctx.o th_file.o th_config.o th_network.o th_datastruct.o NNCHAT_OBJ=main.o util.o ui.o -NNCHAT_BIN=$(BINPATH)nnchat$(EXEEXT) +NNCHAT_BIN=$(BINPATH)nnchat$(BINEXT) TARGETS += $(NNCHAT_BIN) diff -r 788a58dab07a -r f1df1cf69a38 Makefile.unix --- a/Makefile.unix Sun Jan 05 20:48:15 2020 +0200 +++ b/Makefile.unix Mon Jan 06 12:40:57 2020 +0200 @@ -12,9 +12,9 @@ ## BINPATH ?= ./ OBJPATH ?= obj/unix/ -EXEEXT ?= +BINEXT ?= -ENDIANCHK_BIN = $(BINPATH)endianchk$(EXEEXT) +ENDIANCHK_BIN = $(BINPATH)endianchk$(BINEXT) NOINST_TARGETS += $(ENDIANCHK_BIN) config.h THLIBS_DEP = config.h diff -r 788a58dab07a -r f1df1cf69a38 Makefile.w32 --- a/Makefile.w32 Sun Jan 05 20:48:15 2020 +0200 +++ b/Makefile.w32 Mon Jan 06 12:40:57 2020 +0200 @@ -6,7 +6,7 @@ PREFIX = ./win32/ BINPATH = ./installer/ OBJPATH = ./obj/win32/ -EXEEXT = .exe +BINEXT = .exe INSTALL = DOC = $(BINPATH)/README.html