Update po files.
[platform/upstream/cryptsetup.git] / docs / doxygen_index
index eff8a57..3bca941 100644 (file)
@@ -3,6 +3,8 @@
  *
  * The documentation covers public parts of cryptsetup API. In the following sections you'll find
  * the examples that describe some features of cryptsetup API.
+ * For more info about libcryptsetup API versions see
+ * <a href="http://upstream-tracker.org/versions/libcryptsetup.html">Upstream Tracker</a>.
  *
  * <OL type="A">
  *     <LI>@ref cexamples "Cryptsetup API examples"</LI>
  *
  *             @subsection cluks_ex crypt_luks_usage.c - Complex example
  *
- *                     To compile and link against current libcryptsetup use command:
+ *                     To compile and run use following commands in examples directory:
  *
  * @code
- * gcc -Wall -L../../lib/.libs -I../../lib -lcryptsetup crypt_luks_usage.c -o crypt_luks_usage
- * LD_LIBRARY_PATH=../../lib/.libs ./crypt_luks_usage _path_to_[block_device]_file
+ * make
+ * ./crypt_luks_usage _path_to_[block_device]_file
  * @endcode
  *
  *                     Note that you need to have the cryptsetup library compiled. @include crypt_luks_usage.c
  *
  *     @section clog crypt_log_usage - cryptsetup logging API example
  *
- *             Example describes basic use case for cryptsetup logging API. To compile the example and link
- *             against current libcryptsetup use command:
+ *             Example describes basic use case for cryptsetup logging. To compile and run
+ *             use following commands in examples directory:
  *
  * @code
- * gcc -Wall -L../../lib/.libs -I../../lib -lcryptsetup crypt_log_usage.c -o crypt_log_usage
- * LD_LIBRARY_PATH=../../.libs ./crypt_log_usage
+ * make
+ * ./crypt_log_usage
  * @endcode
  *
  *             Note that you need to have the cryptsetup library compiled. @include crypt_log_usage.c