diff options
author | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-09-13 16:01:39 +0200 |
---|---|---|
committer | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-09-14 14:04:51 +0200 |
commit | 2f34481142341c8f24e78fe6cf94ba9c1abec54b (patch) | |
tree | 7fc0ee0118736fdd38886619495fe7b2afba682e | |
parent | 46af983e652f65daae517e7c6affa34edbde702c (diff) |
doc: remove obsolete GNUmakefile, add CMakeLists.txt
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
-rw-r--r-- | doc/CMakeLists.txt | 4 | ||||
-rw-r--r-- | doc/GNUmakefile | 7 |
2 files changed, 4 insertions, 7 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt new file mode 100644 index 0000000..5dcd396 --- /dev/null +++ b/doc/CMakeLists.txt @@ -0,0 +1,4 @@ +install( + FILES ${CMAKE_PROJECT_NAME}.txt + DESTINATION ${CMAKE_INSTALL_DOCDIR} + COMPONENT "development") diff --git a/doc/GNUmakefile b/doc/GNUmakefile deleted file mode 100644 index 23aa9d5..0000000 --- a/doc/GNUmakefile +++ /dev/null @@ -1,7 +0,0 @@ -all: AFBClient.html - -AFBClient.html: AFBClient.txt - asciidoc -a max-width=55em $^ - -clean: - rm -f AFBClient.html |