comparison Makefile.unix @ 695:f1df1cf69a38

Rename EXEEXT to BINEXT in the build system, as per changes in th-libs build system.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 06 Jan 2020 12:40:57 +0200
parents cfbc5ddf74e5
children 1ab9b538c0bb
comparison
equal deleted inserted replaced
694:788a58dab07a 695:f1df1cf69a38
10 ## 10 ##
11 ## Miscellaneous 11 ## Miscellaneous
12 ## 12 ##
13 BINPATH ?= ./ 13 BINPATH ?= ./
14 OBJPATH ?= obj/unix/ 14 OBJPATH ?= obj/unix/
15 EXEEXT ?= 15 BINEXT ?=
16 16
17 ENDIANCHK_BIN = $(BINPATH)endianchk$(EXEEXT) 17 ENDIANCHK_BIN = $(BINPATH)endianchk$(BINEXT)
18 NOINST_TARGETS += $(ENDIANCHK_BIN) config.h 18 NOINST_TARGETS += $(ENDIANCHK_BIN) config.h
19 THLIBS_DEP = config.h 19 THLIBS_DEP = config.h
20 20
21 include Makefile.gen 21 include Makefile.gen
22 22