standalone-exe.mk: Streamline some variables

- Leave definition of EXE to run.mk
  - Fix some prerequisites (VERSION, DIST_VERSION, USE_CFG_XXX_MK)
This commit is contained in:
Jan Lindemann 2007-07-13 10:49:46 +00:00 committed by Jan Lindemann
commit fedd4615db

View file

@ -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