From 67d78dfaec8e35fd2d5196592d41565025453d7f Mon Sep 17 00:00:00 2001 From: Adrien Bourmault Date: Wed, 30 Jun 2021 15:50:39 +0200 Subject: [PATCH] make run-cli --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6a7c510..cf6026f 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ SERVEROBJ= $(BINDIR)/scheduler.o $(BINDIR)/server.o $(BINDIR)/localworker.o \ CLIOBJ= $(BINDIR)/cli.o .DEFAULT_GOAL:= all -.PHONY: all clean deb tests install run +.PHONY: all clean deb tests install run run-cli run-tests # ---- Tests enumeration ----------------------------------------------------- # TEST_SCHEDULER=$(BINDIR)/tests/centers @@ -90,6 +90,8 @@ install: # ---- Builder uses this target to run your application ---------------------- # run: all bin/gem-graph-server +run-cli: all + bin/gem-graph-ctl run-tests: tests bin/tests/scheduler