blob: e5741a7624f5748bc4533b2f0c71e375bf1f7f41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|