Skip to content
Snippets Groups Projects
Commit b30cbe67 authored by Taddeüs Kroes's avatar Taddeüs Kroes
Browse files

Makefile cleanup

parent b9d64d1c
No related branches found
No related tags found
No related merge requests found
...@@ -35,15 +35,17 @@ d := tests/ ...@@ -35,15 +35,17 @@ d := tests/
include base.mk include base.mk
include $(d)/rules.mk include $(d)/rules.mk
.PHONY: doc .PHONY: all doc build clean pyclean distclean
all: doc build all: doc build
distclean: clean pyclean
clean: clean:
rm -rf $(CLEAN) rm -rf $(CLEAN)
distclean: pyclean:
rm -rf $(CLEAN) `find . -name \*.pyc` find -name \*.pyc -delete
$(TGT_DIR): $(TGT_DIR):
mkdir -p $(TGT_DIR) mkdir -p $(TGT_DIR)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment