mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 03:53:32 +01:00
make: Replace "pereq" in targets by "deps"
"prereq" is simply impossible to use in explanations with a straight face. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
6327f67683
commit
6bdb16878a
6 changed files with 22 additions and 22 deletions
20
make/run.mk
20
make/run.mk
|
|
@ -67,24 +67,24 @@ install:
|
|||
clean: runclean localclean
|
||||
distclean:
|
||||
|
||||
run-prereq: all
|
||||
run-deps: all
|
||||
$(RM) -f core core.* vgcore vgcore.*
|
||||
|
||||
ifeq ($(TARGET),mingw)
|
||||
run test: run-prereq
|
||||
run test: run-deps
|
||||
@echo "wine $(EXE_PATH) $(EXE_ARGS)"
|
||||
@echo -e "set PATH=%PATH;$(DLL_PATH)\n" \
|
||||
"$(EXE_PATH) $(EXE_ARGS)" | wine cmd
|
||||
|
||||
start: run-prereq
|
||||
start: run-deps
|
||||
@echo "wine $(EXE_PATH) $(EXE_ARGS)"
|
||||
@echo -e "set PATH=%PATH;$(DLL_PATH)\n" \
|
||||
"$(EXE_PATH) $(EXE_ARGS)" | wine cmd &
|
||||
|
||||
else
|
||||
run test: run-prereq
|
||||
run test: run-deps
|
||||
$(EXE_PATH) $(EXE_ARGS)
|
||||
start: run-prereq
|
||||
start: run-deps
|
||||
$(EXE_PATH) $(EXE_ARGS) &
|
||||
|
||||
which:
|
||||
|
|
@ -115,13 +115,13 @@ wait-stop:
|
|||
|
||||
restart: stop wait-stop all start
|
||||
|
||||
valgrind: run-prereq
|
||||
valgrind: run-deps
|
||||
valgrind $(VALGRIND_OPTS) $(EXE_PATH) $(EXE_ARGS)
|
||||
|
||||
valkyrie: run-prereq
|
||||
valkyrie: run-deps
|
||||
valkyrie $(VALGRIND_OPTS) $(EXE_PATH) $(EXE_ARGS)
|
||||
|
||||
efence: run-prereq
|
||||
efence: run-deps
|
||||
ef $(EXE_PATH) $(EXE_ARGS)
|
||||
|
||||
supp.tmp:
|
||||
|
|
@ -156,10 +156,10 @@ kill:
|
|||
abort:
|
||||
killall -6 $(notdir $(EXE_PATH))
|
||||
|
||||
strace: $(EXE_PATH) $(EXE_BIN) run-prereq
|
||||
strace: $(EXE_PATH) $(EXE_BIN) run-deps
|
||||
strace -f $(STRACE_EXTRA_OPTS) $(EXE_PATH) $(EXE_ARGS)
|
||||
|
||||
tee: $(EXE_PATH) $(EXE_BIN) run-prereq
|
||||
tee: $(EXE_PATH) $(EXE_BIN) run-deps
|
||||
$(EXE_PATH) $(EXE_ARGS) 2>&1 | tee run.out
|
||||
|
||||
kcg:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue