summaryrefslogtreecommitdiffstats
path: root/Makefile.am
blob: cf2006460776ddae822364db2210b2c87585ae41 (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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
##
# Rofi the program
##
bin_PROGRAMS=rofi

LIBS=\
    @xft_LIBS@\
    @x11_LIBS@\
    @xinerama_LIBS@\
	@pango_LIBS@

AM_CFLAGS=\
    @xft_CFLAGS@\
    @x11_CFLAGS@\
    @xinerama_CFLAGS@\
    @pango_CFLAGS@\
    -DMANPAGE_PATH="\"$(mandir)/man1/rofi.1\""\
    -I$(top_srcdir)/include/\
    -I$(top_srcdir)/config/\
    -I$(top_builddir)/

rofi_SOURCES=\
    source/rofi.c\
    source/textbox.c\
    source/xrmoptions.c\
    source/dmenu-dialog.c\
    source/run-dialog.c\
    source/ssh-dialog.c\
    source/script-dialog.c\
    source/history.c\
    config/config.c\
	source/helper.c\
    include/rofi.h\
    include/run-dialog.h\
    include/ssh-dialog.h\
    include/dmenu-dialog.h\
    include/script-dialog.h\
    include/xrmoptions.h\
    include/history.h\
    include/textbox.h\
	include/helper.h

##
# Manpage
##
man1_MANS=\
    doc/rofi.1

##
# Readme.md
##
markdown_SC_FILES=\
    README.md

# want the html to show up in release.
md_verbose = $(md_verbose_@AM_V@)
md_verbose_ = $(md_verbose_@AM_DEFAULT_V@)
md_verbose_0 = @echo "  MD" $@;

markdown_FILES=\
    README.html

README.html: README.md
	$(md_verbose) markdown $< > $@

## 
# Extra DIST
##
EXTRA_DIST=\
    $(man1_MANS)\
    $(markdown_FILES)\
    $(markdown_SC_FILES)\
    Examples/i3_switch_workspaces.sh\
    Examples/brightness_rofi.sh\
    Examples/domo_rofi_script.sh\
    INSTALL.md

##
# Indent
##

indent: ${rofi_SOURCES}
	uncrustify -c ${top_srcdir}/data/uncrustify.cfg --replace $^

update-manpage: ${top_srcdir}/doc/rofi-manpage.markdown
	md2man-roff $^ > ${top_srcdir}/doc/rofi.1 

.PHONY: test
test: rofi
	make -C test/ test
##
# Rofi test program
##
noinst_PROGRAMS=rofi_test textbox_test helper_test


rofi_test_SOURCES=\
    source/history.c\
    config/config.c\
    include/rofi.h\
    include/history.h\
	test/history-test.c

textbox_test_SOURCES=\
    source/textbox.c\
    config/config.c\
    include/rofi.h\
    include/textbox.h\
	test/textbox-test.c

helper_test_SOURCES=\
    config/config.c\
    include/rofi.h\
    source/helper.c\
    include/helper.h\
    test/helper-test.c

.PHONY: test
test: ${bin_PROGRAMS} 
	./rofi_test
	./helper_test
	$(top_srcdir)/test/run_test.sh 123 $(top_builddir)/textbox_test $(top_builddir) $(top_srcdir)/doc/example.xresources
	$(top_srcdir)/test/run_test.sh 200 $(top_srcdir)/test/run_errormsg_test.sh $(top_builddir) $(top_srcdir)/doc/example.xresources
	$(top_srcdir)/test/run_test.sh 201 $(top_srcdir)/test/run_switchdialog_test.sh $(top_builddir) $(top_srcdir)/doc/example.xresources
	$(top_srcdir)/test/run_test.sh 202 $(top_srcdir)/test/run_dmenu_test.sh $(top_builddir) $(top_srcdir)/doc/example.xresources
	$(top_srcdir)/test/run_test.sh 203 $(top_srcdir)/test/run_dmenu_custom_test.sh $(top_builddir) $(top_srcdir)/doc/example.xresources
	$(top_srcdir)/test/run_test.sh 204 $(top_srcdir)/test/run_run_test.sh $(top_builddir) $(top_srcdir)/doc/example.xresources
	$(top_srcdir)/test/run_test.sh 205 $(top_srcdir)/test/run_script_test.sh $(top_builddir) $(top_srcdir)/doc/example.xresources