• R/O
  • SSH

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Castle: The best Real-Time/Embedded/HighTech language EVER. Attempt 2


Commit MetaInfo

修訂fb02ab15cc9ab05452fb7d27680edaa63c25f95d (tree)
時間2021-12-09 22:20:12
作者Albert Mietus < albert AT mietus DOT nl >
CommiterAlbert Mietus < albert AT mietus DOT nl >

Log Message

AST: Added local Makefile

Change Summary

差異

diff -r 576a58e0c70a -r fb02ab15cc9a AST/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/AST/Makefile Thu Dec 09 14:20:12 2021 +0100
@@ -0,0 +1,19 @@
1+default: tst
2+
3+all: tst demos
4+
5+DEMOS:=$(wildcard demo/*demo*.py)
6+demos:
7+ for d in ${DEMOS}; do echo "*** $$d ***"; python $$d; done
8+tst:
9+ (cd pytst/; pytest)
10+tst-s:
11+ (cd pytst/; pytest -s)
12+
13+
14+clean:
15+ rm -rf {.,castle}/{__pycache__,.pytest_cache}/
16+ rm -rf pytst/{.,*}/{__pycache__,.pytest_cache}/
17+ rm -f *.dot
18+ rm -f pytst/*.dot
19+