forked from vivien/i3blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
52 lines (43 loc) · 795 Bytes
/
Makefile.am
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
DEFS += \
-DSYSCONFDIR=\"$(sysconfdir)\"
bin_PROGRAMS = i3blocks
i3blocks_CFLAGS = \
$(AM_CFLAGS) \
$(UTF8PROC_CFLAGS)
i3blocks_LDADD = \
$(UTF8PROC_LIBS)
i3blocks_SOURCES = \
bar.c \
bar.h \
block.c \
block.h \
config.c \
config.h \
i3bar.c \
ini.c \
ini.h \
json.c \
json.h \
line.c \
line.h \
log.h \
main.c \
map.c \
map.h \
sys.c \
sys.h \
term.h \
ticker.c \
ticker.h
dist_man1_MANS = \
docs/i3blocks.1
dist_sysconf_DATA = \
i3blocks.conf
if ENABLE_BASH_COMPLETION
bashcompletiondir = $(BASH_COMPLETION_DIR)
bashcompletion_DATA = bash-completion
install-data-local: install-bashcompletionDATA
( cd '$(DESTDIR)$(BASH_COMPLETION_DIR)' && mv bash-completion i3blocks )
uninstall-local:
( cd '$(DESTDIR)$(BASH_COMPLETION_DIR)' && rm -rf i3blocks )
endif