test-exe.mk: Now not installing executables anymore from test-exe.mk

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2014-08-23 12:18:29 +00:00
commit 8d7b6e89d6

View file

@ -3,12 +3,17 @@
# contact@jannet.de
# $Id$
EXE_BASENAME ?= test_$(notdir $(shell pwd))
EXE_BASENAME ?= test-$(notdir $(shell pwd))
include $(MODDIR)/make/exe.mk
include $(MODDIR)/make/run.mk
all: $(EXE)
install:
clean: execlean localclean profclean testclean
distclean:
run test: all.dirs $(EXE) $(EXE_BIN)
strace: $(EXE) $(EXE_BIN)
test: test.done
clean: testclean
test.done:
if ! 2>&1 make run > test.out 2>&1; then \
@ -19,3 +24,10 @@ test.done:
testclean:
rm -rf test.done test.out
ifeq ($(USE_PROJECT_LIB),true)
$(LIB_SO): $(LIB_A)
$(EXE): $(LIB_SO)
endif
all.dirs: