• R/O
  • SSH

提交

标签
No Tags

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

修订版ef5e72aa7138dfc344f47b6d96f0c3597e2402ac (tree)
时间2024-03-04 00:31:31
作者Albert Mietus < albert AT mietus DOT nl >
CommiterAlbert Mietus < albert AT mietus DOT nl >

Log Message

Added 'make install-e' (ASIS)

更改概述

差异

diff -r 34598c981685 -r ef5e72aa7138 Mk/build.mk
--- a/Mk/build.mk Sat Mar 02 19:45:24 2024 +0100
+++ b/Mk/build.mk Sun Mar 03 16:31:31 2024 +0100
@@ -1,4 +1,6 @@
11 build: all
22 python -m build
33
4+install-e: build
5+ pip install -e .
46
diff -r 34598c981685 -r ef5e72aa7138 Mk/settings.mk
--- a/Mk/settings.mk Sat Mar 02 19:45:24 2024 +0100
+++ b/Mk/settings.mk Sun Mar 03 16:31:31 2024 +0100
@@ -8,6 +8,6 @@
88 SETS = last current current-ds current-info recheck
99 TYPICAL = all clean cleaner cleanest veryclean doc test pytest pytest-only
1010 ALL = current last todo pyanalyse todo mypy
11-BUILD = ${ALL} build
11+BUILD = ${ALL} build install-e
1212 TEST = test pytest coverage mutmut
13-FULL = ${SETS} ${TYPICAL} ${ALL} ${TEST}
13+FULL = ${SETS} ${TYPICAL} ${ALL} ${TEST} ${BUILD}