summaryrefslogtreecommitdiff
path: root/src/internal/slibtool_uninstall_impl.h
blob: bef25c5b4c8c7ef160bb67fd01520b7d7b2d8242 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef SLIBTOOL_UNINSTALL_IMPL_H
#define SLIBTOOL_UNINSTALL_IMPL_H

#include "argv/argv.h"

extern const struct argv_option slbt_uninstall_options[];

enum uninstall_tags {
	TAG_UNINSTALL_HELP,
	TAG_UNINSTALL_VERSION,
	TAG_UNINSTALL_SYSROOT,
	TAG_UNINSTALL_FORCE,
	TAG_UNINSTALL_RMDIR,
	TAG_UNINSTALL_VERBOSE,
	TAG_UNINSTALL_FORBIDDEN,
	TAG_UNINSTALL_RECURSIVE = TAG_UNINSTALL_FORBIDDEN,
};

#define SLBT_UNINSTALL_HELP		0x0001
#define SLBT_UNINSTALL_VERSION		0x0002
#define SLBT_UNINSTALL_FORCE		0x0004
#define SLBT_UNINSTALL_RMDIR		0x0008
#define SLBT_UNINSTALL_VERBOSE		0x0010
#define SLBT_UNINSTALL_FORBIDDEN	0x8000

#endif