test-exe.mk: Fix EXE name for mingw

This commit is contained in:
Jan Lindemann 2007-10-31 08:17:33 +00:00 committed by Jan Lindemann
commit 650c7aaa8c

View file

@ -3,7 +3,11 @@
# contact@jannet.de
# $Id$
ifeq ($(TARGET),mingw)
EXE ?= test_$(notdir $(shell pwd)).exe
else
EXE ?= test_$(notdir $(shell pwd))
endif
include $(MODDIR)/make/exe.mk