mirror of https://github.com/acidanthera/audk.git
10 lines
88 B
Makefile
10 lines
88 B
Makefile
|
|
||
|
all: test
|
||
|
|
||
|
test:
|
||
|
@python RunTests.py
|
||
|
|
||
|
clean:
|
||
|
find . -name '*.pyc' -exec rm '{}' ';'
|
||
|
|