make run-cli

This commit is contained in:
Adrien Bourmault 2021-06-30 15:50:39 +02:00
parent 97868beb39
commit 67d78dfaec
No known key found for this signature in database
GPG Key ID: 6EB408FE0ACEC664
1 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,7 @@ SERVEROBJ= $(BINDIR)/scheduler.o $(BINDIR)/server.o $(BINDIR)/localworker.o \
CLIOBJ= $(BINDIR)/cli.o CLIOBJ= $(BINDIR)/cli.o
.DEFAULT_GOAL:= all .DEFAULT_GOAL:= all
.PHONY: all clean deb tests install run .PHONY: all clean deb tests install run run-cli run-tests
# ---- Tests enumeration ----------------------------------------------------- # # ---- Tests enumeration ----------------------------------------------------- #
TEST_SCHEDULER=$(BINDIR)/tests/centers TEST_SCHEDULER=$(BINDIR)/tests/centers
@ -90,6 +90,8 @@ install:
# ---- Builder uses this target to run your application ---------------------- # # ---- Builder uses this target to run your application ---------------------- #
run: all run: all
bin/gem-graph-server bin/gem-graph-server
run-cli: all
bin/gem-graph-ctl
run-tests: tests run-tests: tests
bin/tests/scheduler bin/tests/scheduler