diff --git a/Makefile b/Makefile index 34c413e44f..1d77f0b0bf 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,7 @@ IMPORT := github.com/owncloud/$(NAME) BIN := bin DIST := dist HUGO := hugo +CONFIG := config/identifier-registration.yaml ifeq ($(OS), Windows_NT) EXECUTABLE := $(NAME).exe @@ -61,6 +62,10 @@ clean: go clean -i ./... rm -rf $(BIN) $(DIST) $(HUGO) +.PHONY: clean-config +clean-config: + rm -rf $(CONFIG) + .PHONY: fmt fmt: gofmt -s -w $(SOURCES)