summaryrefslogtreecommitdiff
path: root/src/internal/slibtool_install_impl.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-04-09 11:14:27 -0400
committermidipix <writeonce@midipix.org>2016-04-09 19:01:07 -0400
commit258073e76ddf4030ff9d6385caf6af7d0c609a3f (patch)
tree562ec12e39eb9beb79a2472bec6ce98c208420e0 /src/internal/slibtool_install_impl.h
parentdc77cbe66029a7e925c1d7299be7dfc04d4c263e (diff)
downloadslibtool-258073e76ddf4030ff9d6385caf6af7d0c609a3f.tar.bz2
slibtool-258073e76ddf4030ff9d6385caf6af7d0c609a3f.tar.xz
install mode: initial implementation and integration.
Diffstat (limited to 'src/internal/slibtool_install_impl.h')
-rw-r--r--src/internal/slibtool_install_impl.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/internal/slibtool_install_impl.h b/src/internal/slibtool_install_impl.h
new file mode 100644
index 0000000..e5741a7
--- /dev/null
+++ b/src/internal/slibtool_install_impl.h
@@ -0,0 +1,21 @@
+#ifndef SLIBTOOL_INSTALL_IMPL_H
+#define SLIBTOOL_INSTALL_IMPL_H
+
+#include "argv/argv.h"
+
+extern const struct argv_option slbt_install_options[];
+
+enum install_tags {
+ TAG_INSTALL_HELP,
+ TAG_INSTALL_COPY,
+ TAG_INSTALL_MKDIR,
+ TAG_INSTALL_TARGET_MKDIR,
+ TAG_INSTALL_STRIP,
+ TAG_INSTALL_PRESERVE,
+ TAG_INSTALL_USER,
+ TAG_INSTALL_GROUP,
+ TAG_INSTALL_MODE,
+ TAG_INSTALL_DSTDIR,
+};
+
+#endif