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)