diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 12:06:36 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 12:31:09 +0100 |
commit | 53d8fcb75754d63e3af1a89d5f230eb325e0b9f5 (patch) | |
tree | a72a27b9cbe4e11ac2ac5e381d2cafa3e8716297 /Makefile | |
parent | workflows/ci: add VS 2022 builds (diff) | |
download | winapi-common-53d8fcb75754d63e3af1a89d5f230eb325e0b9f5.tar.gz winapi-common-53d8fcb75754d63e3af1a89d5f230eb325e0b9f5.zip |
cmake: fix duplicate target names
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ xdg-open := $(shell command -v xdg-open 2> /dev/null) .PHONY: docs docs: - cmake --build '$(call escape,$(cmake_dir))' --target docs + cmake --build '$(call escape,$(cmake_dir))' --target winapi_common_docs ifndef CI ifdef xdg-open xdg-open '$(call escape,$(cmake_dir))/html/index.html' &> /dev/null |