From 934849a965a1fb63859baac9a70674c726de793c Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Mon, 24 Apr 2017 05:11:11 +0000 Subject: [PATCH] Amend r6126, which doesn't leave "eduke32" defined anywhere for binary names when APPBASENAME is not specified. git-svn-id: https://svn.eduke32.com/eduke32@6129 1a8010ca-5511-0410-912e-c29ae57300e0 --- GNUmakefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index f0bcb826b..a9664839b 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -378,9 +378,13 @@ DUKE3D_EDITOR_STRIPFLAGS= DUKE3D_OBJ=$(obj)/$(DUKE3D) -DUKE3D_GAME ?= $(APPBASENAME) +DUKE3D_GAME ?= eduke32 DUKE3D_EDITOR ?= mapster32 +ifneq (,$(APPBASENAME)) + DUKE3D_GAME = $(APPBASENAME) +endif + DUKE3D_GAME_PROPER ?= EDuke32 DUKE3D_EDITOR_PROPER ?= Mapster32