From fedd4615db89fa156cf48d047fe465d47564f34e Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Fri, 13 Jul 2007 10:49:46 +0000 Subject: [PATCH] standalone-exe.mk: Streamline some variables - Leave definition of EXE to run.mk - Fix some prerequisites (VERSION, DIST_VERSION, USE_CFG_XXX_MK) --- make/standalone-exe.mk | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/make/standalone-exe.mk b/make/standalone-exe.mk index 3da6cc5d..4646ecce 100644 --- a/make/standalone-exe.mk +++ b/make/standalone-exe.mk @@ -3,9 +3,9 @@ # contact@jannet.de # $Id$ -ifeq ($(EXE),) -EXE = $(notdir $(shell pwd)) -endif +VERSION = 0.0.0.0-dev +DIST_VERSION = $(VERSION) +USE_CFG_XXX_MK = false ifeq ($(PROJECT),) PROJECT = $(notdir $(shell pwd)) @@ -18,7 +18,7 @@ endif include $(MODDIR)/make/run.mk include $(MODDIR)/make/depend.mk -all: $(EXE) $(EXE_BIN) +all: $(EXE) install: $(INSTALLED_EXE) $(INSTALLED_EXE_BIN) run: all.dirs $(EXE) $(EXE_BIN) strace: $(EXE) $(EXE_BIN) @@ -30,5 +30,4 @@ debug: gdb all.dirs: clean: execlean localclean clean.standalone-exe clean.standalone-exe: - rm -rf bin