From b5aec20e69a2bf29d43c9984f35c10a138b6e4da Mon Sep 17 00:00:00 2001 From: Bogomil Vasilev Date: Thu, 12 Jul 2018 11:47:42 +0300 Subject: [PATCH] Implement make agent & clean_agent --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 26cc471..0b5f30f 100644 --- a/Makefile +++ b/Makefile @@ -45,6 +45,14 @@ else @$(CC) $(CFLAGS) -c $< -o $@ endif +.PHONY: agent +agent: + $(MAKE) -C agent + +.PHONY: clean_agent +clean_agent: + $(MAKE) -C agent clean + clean: rm -f $(OBJECTS) $(BUILDDIR)/$(EXECUTABLE)