Skip to content

Commit

Permalink
Don't error make clean on missing submodule
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
  • Loading branch information
Kubuxu committed Jul 22, 2019
1 parent 978bd5c commit 8b7378d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,15 @@ build: $(BUILD_DEPS)
.PHONY: build

clean:
$(MAKE) -C $(BLS_PATH) clean
rm -rf $(CLEAN)
-$(MAKE) -C $(BLS_PATH) clean
.PHONY: clean

dist-clean:
git clean -xdff
git submodule deinit --all -f
.PHONY: dist-clean


print-%:
@echo $*=$($*)

0 comments on commit 8b7378d

Please sign in to comment.