mirror of
https://github.com/clearlinux/graphene.git
synced 2026-08-02 10:05:50 +00:00
19 lines
181 B
Makefile
19 lines
181 B
Makefile
.PHONY: all
|
|
all: ;
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(RM) -r __pycache__
|
|
|
|
.PHONY: distclean
|
|
distclean: clean
|
|
|
|
.PHONY: format
|
|
format: ;
|
|
|
|
.PHONY: test
|
|
test: ;
|
|
|
|
.PHONY: sgx-tokens
|
|
sgx-tokens: ;
|