forked from bulletmark/libinput-gestures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
53 lines (39 loc) · 1.05 KB
/
Makefile
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
# Copyright (C) 2015 Mark Blakeney, [email protected]. This program is
# distributed under the terms of the GNU General Public License.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or any
# later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License at <http://www.gnu.org/licenses/> for more
# details.
DOC = README.md
DOCOUT = $(DOC:.md=.html)
all:
@echo "Type make install|uninstall|start|stop|restart"
install:
@./install.sh
uninstall:
@./install.sh -r
force_install:
@./install.sh -f
force_uninstall:
@./install.sh -rf
bin:
@./install.sh -df
stop:
@./install.sh -s
start:
@./install.sh -x
restart:
@./install.sh -s
@./install.sh -x
doc: $(DOCOUT)
$(DOCOUT): $(DOC)
markdown $< >$@
clean:
rm -rf $(DOCOUT)