mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-05 21:31:36 +00:00
Before, there was no target that cleaned up downloaded sources. This commit adds a distclean target to match the 'apps' Makefiles.
19 lines
179 B
Makefile
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: ;
|