Files
graphene/Scripts/Makefile
Simon Gaiser 7377a787bc [Makefile] Add distclean target
Before, there was no target that cleaned up downloaded sources. This
commit adds a distclean target to match the 'apps' Makefiles.
2020-02-04 01:15:08 +01:00

19 lines
179 B
Makefile

.PHONY: all
all: ;
.PHONY: clean
clean:
rm -rf __pycache__
.PHONY: distclean
distclean: clean
.PHONY: format
format: ;
.PHONY: test
test: ;
.PHONY: sgx-tokens
sgx-tokens: ;