run.mk: Add targets stop, clean, fix dependencies

- Add targets stop and kill
  - Make clean depend on runclean
This commit is contained in:
Jan Lindemann 2006-03-14 14:44:09 +00:00 committed by Jan Lindemann
commit 8234d5c887

View file

@ -19,10 +19,15 @@ install:
run:
rm -f $(CORE)
./$(EXE) $(EXE_ARGS)
stop:
killall ./$(EXE)
kill:
killall -9 ./$(EXE)
strace: $(EXE) $(EXE_BIN)
strace -f ./$(EXE) $(EXE_ARGS)
kdbg gdb ddd:
$@ $(EXE) $(firstword $(CORE))
debug: gdb
clean: localclean
clean: runclean localclean