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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved. This file is offered as-is,
# without any warranty.
# Include configurations.
include mk/config.mk
# The version of the package.
MAJOR = 0
MINOR = 1
VERSION = $(MAJOR).$(MINOR)
# The version of libmdsserver.
LIBMDSSERVER_MAJOR = $(MAJOR)
LIBMDSSERVER_MINOR = $(MINOR)
LIBMDSSERVER_VERSION = $(LIBMDSSERVER_MAJOR).$(LIBMDSSERVER_MINOR)
# The version of libmdsclient.
LIBMDSCLIENT_MAJOR = $(MAJOR)
LIBMDSCLIENT_MINOR = $(MINOR)
LIBMDSCLIENT_VERSION = $(LIBMDSCLIENT_MAJOR).$(LIBMDSCLIENT_MINOR)
# Splits of the info manual.
INFOPARTS = 1 2 3
# Object files for the server libary.
SERVEROBJ = linked-list client-list hash-table fd-table mds-message util
# Object files for the client libary.
CLIENTOBJ = proto-util comm address inbound
# Servers and utilities.
SERVERS = mds mds-respawn mds-server mds-echo mds-registry mds-clipboard \
mds-kkbd mds-vt mds-colour mds-libinput
# Utilities that do not utilise mds-base.
TOOLS = mds-kbdc
# Servers that need setuid and root owner.
SETUID_SERVERS = mds mds-kkbd mds-vt mds-libinput
# Object files for multi-object file binaries.
OBJ_mds-server_ = mds-server interception-condition client multicast \
queued-interception globals signals interceptors \
sending slavery reexec receiving
OBJ_mds-registry_ = mds-registry util globals reexec registry signals \
slave
OBJ_mds-kbdc_ = mds-kbdc globals raw-data builtin-functions string \
tree make-tree parse-error simplify-tree parsed \
process-includes validate-tree eliminate-dead-code \
paths include-stack compile-layout variables \
callables call-stack
OBJ_mds-server = $(foreach O,$(OBJ_mds-server_),obj/mds-server/$(O).o)
OBJ_mds-registry = $(foreach O,$(OBJ_mds-registry_),obj/mds-registry/$(O).o)
OBJ_mds-kbdc = $(foreach O,$(OBJ_mds-kbdc_),obj/mds-kbdc/$(O).o)
# sed:ed .h-source file.
ifneq ($(LIBMDSSERVER_IS_INSTALLED),y)
SEDED = src/libmdsserver/config.h
else
SEDED =
endif
# Build rules.
.PHONY: all
all: doc servers libraries tools
include mk/build.mk
include mk/build-doc.mk
# Set permissions on built files.
.PHONY: perms
perms: all
@printf '\e[00;01;34m%s\e[00m\n' "$@"
sudo chown 'root:root' $(foreach S,$(SETUID_SERVERS),bin/$(S))
sudo chmod 4755 $(foreach S,$(SETUID_SERVERS),bin/$(S))
@echo
# Clean rules.
.PHONY: clean
clean:
-rm -rf obj bin $(SEDED)
|