exe.mk, run.mk: Make target test an alias for target run

This commit is contained in:
Jan Lindemann 2010-12-02 21:43:08 +00:00 committed by Jan Lindemann
commit 9af8a4e83a
2 changed files with 3 additions and 3 deletions

View file

@ -21,7 +21,7 @@ callgrind:
valgrind --tool=callgrind $(VALGRIND_OPTS) ./$(EXE) $(EXE_ARGS)
ifeq ($(TARGET),mingw)
run:
run test:
@echo "wine $(EXE) $(EXE_ARGS)"
@echo -e "set PATH=%PATH;$(DLL_PATH)\n" \
"$(EXE) $(EXE_ARGS)" | wine cmd
@ -31,7 +31,7 @@ clean: winrunclean
winrunclean:
rm -f start.bat
else
run:
run test:
rm -f $(CORE)
./$(EXE) $(EXE_ARGS)
endif