File tree 2 files changed +9
-5
lines changed
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,10 @@ deploy-cli:
75
75
76
76
.PHONY : export-cli
77
77
export-cli :
78
- ${MAKE} -C cli conan-profile
78
+ ${MAKE} -C cli export
79
+
80
+ export : export-cli
81
+ package : export-cli
79
82
80
83
.PHONY : docs
81
84
docs :
Original file line number Diff line number Diff line change 21
21
echo " Available targets:"
22
22
echo " install to install cloe-launch locally"
23
23
echo " editable to install cloe-launch locally in editable mode"
24
+ echo " export to export cloe-launch-profile Conan python package"
24
25
25
26
.PHONY : install
26
- install : conan-profile
27
+ install : export
27
28
command -v ${PIP} > /dev/null 2>&1
28
29
# Work-around pip confused by pyproject.toml
29
30
-mv pyproject.toml pyproject.toml.bak
@@ -34,7 +35,7 @@ install: conan-profile
34
35
mv pyproject.toml.bak pyproject.toml
35
36
36
37
.PHONY : editable
37
- editable : conan-profile
38
+ editable : export
38
39
command -v ${PIP} > /dev/null 2>&1
39
40
# Work-around pip confused by pyproject.toml
40
41
-mv pyproject.toml pyproject.toml.bak
@@ -44,6 +45,6 @@ editable: conan-profile
44
45
)
45
46
mv pyproject.toml.bak pyproject.toml
46
47
47
- .PHONY : conan-profile
48
- conan-profile :
48
+ .PHONY : export
49
+ export :
49
50
conan export .
You can’t perform that action at this time.
0 commit comments