File: Makefile.am

package info (click to toggle)
i3blocks 1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 548 kB
  • sloc: ansic: 2,439; makefile: 30; javascript: 29; sh: 19
file content (42 lines) | stat: -rw-r--r-- 658 bytes parent folder | download
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
DEFS += \
	-DSYSCONFDIR=\"$(sysconfdir)\"

bin_PROGRAMS = i3blocks
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

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:
#	( cd '$(DESTDIR)$(BASH_COMPLETION_DIR)' && mv bash-completion i3blocks )
#
#uninstall-local:
#	( cd '$(DESTDIR)$(BASH_COMPLETION_DIR)' && rm -rf i3blocks )
#endif