We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0dc14a commit 83e5abbCopy full SHA for 83e5abb
1 file changed
Makefile
@@ -1,4 +1,4 @@
1
-.PHONY: generate test e2e lint clean readme smoke aidlcli genaidlcli
+.PHONY: generate test e2e lint clean readme smoke aidlcli genaidlcli list-commands
2
3
# Generated top-level directories.
4
GENERATED_DIRS := android com fuzztest libgui_test_server parcelables src
@@ -35,6 +35,10 @@ genaidlcli:
35
aidlcli:
36
go build -o aidlcli ./tools/cmd/aidlcli
37
38
+# List all available aidlcli subcommands.
39
+list-commands:
40
+ go run ./tools/cmd/aidlcli --help 2>&1 | grep '^ ' | awk '{print $$1}'
41
+
42
# Remove all generated code.
43
clean:
44
rm -rf $(GENERATED_DIRS)
0 commit comments