2015-02-27 10:34:57 -05:00
|
|
|
# Specify automake version.
|
2015-03-01 14:17:30 -05:00
|
|
|
AUTOMAKE_OPTIONS = 1.11.3
|
2014-08-29 07:06:40 -04:00
|
|
|
|
2014-03-18 03:59:42 -04:00
|
|
|
##
|
|
|
|
# Rofi the program
|
|
|
|
##
|
2014-03-17 13:00:09 -04:00
|
|
|
bin_PROGRAMS=rofi
|
|
|
|
|
2015-08-03 14:40:01 -04:00
|
|
|
dist_bin_SCRIPTS=script/rofi-sensible-terminal
|
|
|
|
|
2014-03-17 13:00:09 -04:00
|
|
|
LIBS=\
|
|
|
|
@x11_LIBS@\
|
2014-08-02 14:02:37 -04:00
|
|
|
@xinerama_LIBS@\
|
2015-09-13 11:29:50 -04:00
|
|
|
@libsn_LIBS@\
|
2015-09-26 14:34:34 -04:00
|
|
|
@pango_LIBS@\
|
|
|
|
@cairo_LIBS@
|
2014-03-17 13:00:09 -04:00
|
|
|
|
|
|
|
AM_CFLAGS=\
|
2015-02-01 09:12:29 -05:00
|
|
|
@EXTRA_CFLAGS@\
|
2014-03-17 13:00:09 -04:00
|
|
|
@x11_CFLAGS@\
|
|
|
|
@xinerama_CFLAGS@\
|
2014-08-02 14:02:37 -04:00
|
|
|
@pango_CFLAGS@\
|
2015-09-13 11:29:50 -04:00
|
|
|
@libsn_CFLAGS@\
|
2015-09-26 14:34:34 -04:00
|
|
|
@cairo_CFLAGS@\
|
2015-04-05 15:16:27 -04:00
|
|
|
-DMANPAGE_PATH="\"$(mandir)/\""\
|
2014-03-17 13:00:09 -04:00
|
|
|
-I$(top_srcdir)/include/\
|
|
|
|
-I$(top_srcdir)/config/\
|
2015-02-18 02:53:38 -05:00
|
|
|
-I$(top_builddir)/\
|
|
|
|
-Werror=missing-prototypes
|
2014-03-17 13:00:09 -04:00
|
|
|
|
|
|
|
rofi_SOURCES=\
|
|
|
|
source/rofi.c\
|
2015-09-19 15:32:03 -04:00
|
|
|
source/keyb.c\
|
|
|
|
config/config.c\
|
|
|
|
source/helper.c\
|
2014-03-17 13:00:09 -04:00
|
|
|
source/textbox.c\
|
2015-11-14 07:47:45 -05:00
|
|
|
source/timings.c\
|
2015-09-19 15:32:03 -04:00
|
|
|
source/history.c\
|
2015-09-03 12:23:00 -04:00
|
|
|
source/scrollbar.c\
|
2015-09-19 15:32:03 -04:00
|
|
|
source/i3-support.c\
|
2014-03-17 13:00:09 -04:00
|
|
|
source/xrmoptions.c\
|
2015-02-13 02:26:23 -05:00
|
|
|
source/x11-helper.c\
|
2015-03-25 03:36:19 -04:00
|
|
|
source/dialogs/run.c\
|
|
|
|
source/dialogs/ssh.c\
|
2015-11-03 02:31:38 -05:00
|
|
|
source/dialogs/drun.c\
|
2015-09-19 15:32:03 -04:00
|
|
|
source/dialogs/dmenu.c\
|
2015-03-30 14:12:22 -04:00
|
|
|
source/dialogs/combi.c\
|
2015-09-19 15:32:03 -04:00
|
|
|
source/dialogs/window.c\
|
|
|
|
source/dialogs/script.c\
|
2014-03-17 13:00:09 -04:00
|
|
|
include/rofi.h\
|
2015-09-19 15:32:03 -04:00
|
|
|
include/keyb.h\
|
|
|
|
include/helper.h\
|
2015-11-14 07:47:45 -05:00
|
|
|
include/timings.h\
|
2014-05-13 04:45:59 -04:00
|
|
|
include/history.h\
|
2014-09-03 07:07:26 -04:00
|
|
|
include/textbox.h\
|
2015-09-03 12:23:00 -04:00
|
|
|
include/scrollbar.h\
|
2015-09-19 15:32:03 -04:00
|
|
|
include/xrmoptions.h\
|
|
|
|
include/i3-support.h\
|
2015-02-12 16:26:28 -05:00
|
|
|
include/x11-helper.h\
|
2015-09-19 15:32:03 -04:00
|
|
|
include/dialogs/ssh.h\
|
2015-03-25 03:36:19 -04:00
|
|
|
include/dialogs/run.h\
|
2015-11-03 02:31:38 -05:00
|
|
|
include/dialogs/drun.h\
|
2015-09-19 15:32:03 -04:00
|
|
|
include/dialogs/dmenu.h\
|
2015-03-30 14:12:22 -04:00
|
|
|
include/dialogs/combi.h\
|
2015-09-19 15:32:03 -04:00
|
|
|
include/dialogs/script.h\
|
2015-03-25 03:36:19 -04:00
|
|
|
include/dialogs/window.h\
|
2015-09-19 15:32:03 -04:00
|
|
|
include/dialogs/dialogs.h
|
2014-03-17 13:00:09 -04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Manpage
|
|
|
|
##
|
|
|
|
man1_MANS=\
|
2015-09-15 01:54:48 -04:00
|
|
|
doc/rofi.1\
|
|
|
|
doc/rofi-sensible-terminal.1
|
2014-03-17 13:00:09 -04:00
|
|
|
|
2014-03-18 03:40:23 -04:00
|
|
|
##
|
|
|
|
# Readme.md
|
|
|
|
##
|
2014-03-20 03:51:54 -04:00
|
|
|
markdown_SC_FILES=\
|
2014-03-18 03:40:23 -04:00
|
|
|
README.md
|
|
|
|
|
2014-03-20 03:51:54 -04:00
|
|
|
# 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
|
|
|
|
|
2014-04-15 11:16:55 -04:00
|
|
|
README.html: README.md
|
2014-03-20 03:51:54 -04:00
|
|
|
$(md_verbose) markdown $< > $@
|
2014-03-17 13:00:09 -04:00
|
|
|
|
2015-01-11 07:12:43 -05:00
|
|
|
|
|
|
|
##
|
|
|
|
# config directory
|
|
|
|
##
|
2015-01-11 07:25:19 -05:00
|
|
|
${top_builddir}/config/config.c: ${top_srcdir}/config/config.def.c
|
2015-07-25 14:06:26 -04:00
|
|
|
cp ${top_srcdir}/config/config.def.c $@
|
2015-01-11 07:12:43 -05:00
|
|
|
|
2014-03-17 13:00:09 -04:00
|
|
|
##
|
|
|
|
# Extra DIST
|
|
|
|
##
|
|
|
|
EXTRA_DIST=\
|
2014-03-18 03:40:23 -04:00
|
|
|
$(man1_MANS)\
|
2014-04-24 02:03:38 -04:00
|
|
|
$(markdown_FILES)\
|
2014-07-21 10:41:31 -04:00
|
|
|
$(markdown_SC_FILES)\
|
2014-07-21 15:39:24 -04:00
|
|
|
Examples/i3_switch_workspaces.sh\
|
2015-01-11 07:25:19 -05:00
|
|
|
${top_srcdir}/config/config.def.c\
|
2015-01-25 04:11:44 -05:00
|
|
|
INSTALL.md\
|
|
|
|
AUTHORS\
|
|
|
|
Changelog
|
2014-05-24 04:18:36 -04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Indent
|
|
|
|
##
|
|
|
|
|
|
|
|
|
|
|
|
update-manpage: ${top_srcdir}/doc/rofi-manpage.markdown
|
2015-06-02 13:01:25 -04:00
|
|
|
ronn --roff --pipe $^ > ${top_srcdir}/doc/rofi.1
|
2014-08-29 10:24:39 -04:00
|
|
|
|
2014-11-26 13:40:49 -05:00
|
|
|
##
|
|
|
|
# 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\
|
2015-04-30 15:47:32 -04:00
|
|
|
source/keyb.c\
|
|
|
|
source/x11-helper.c\
|
2015-04-30 16:42:04 -04:00
|
|
|
source/xrmoptions.c\
|
|
|
|
source/helper.c\
|
2015-04-30 15:47:32 -04:00
|
|
|
include/keyb.h\
|
2014-11-26 13:40:49 -05:00
|
|
|
include/rofi.h\
|
|
|
|
include/textbox.h\
|
2015-04-30 16:42:04 -04:00
|
|
|
include/x11-helper.h\
|
|
|
|
include/xrmoptions.h\
|
|
|
|
include/helper.h\
|
2014-11-26 13:40:49 -05:00
|
|
|
test/textbox-test.c
|
|
|
|
|
|
|
|
helper_test_SOURCES=\
|
|
|
|
config/config.c\
|
|
|
|
include/rofi.h\
|
|
|
|
source/helper.c\
|
|
|
|
include/helper.h\
|
2015-02-17 09:19:26 -05:00
|
|
|
include/xrmoptions.h\
|
2015-02-17 04:31:59 -05:00
|
|
|
source/xrmoptions.c\
|
2014-11-26 13:40:49 -05:00
|
|
|
test/helper-test.c
|
|
|
|
|
|
|
|
.PHONY: test
|
|
|
|
test: ${bin_PROGRAMS}
|
|
|
|
./rofi_test
|
|
|
|
./helper_test
|
2015-03-03 16:11:17 -05:00
|
|
|
|
|
|
|
.PHONY: test-x
|
|
|
|
test-x: ${bin_PROGRAMS}
|
2015-09-04 14:46:13 -04:00
|
|
|
echo "Test 1"
|
2015-10-31 13:04:55 -04:00
|
|
|
$(top_srcdir)/test/run_test.sh 123 $(top_builddir)/textbox_test $(top_builddir)
|
2015-09-04 14:46:13 -04:00
|
|
|
echo "Test 2"
|
2015-10-31 13:04:55 -04:00
|
|
|
$(top_srcdir)/test/run_test.sh 200 $(top_srcdir)/test/run_errormsg_test.sh $(top_builddir)
|
2015-09-04 14:46:13 -04:00
|
|
|
echo "Test 3"
|
2015-10-31 13:04:55 -04:00
|
|
|
$(top_srcdir)/test/run_test.sh 201 $(top_srcdir)/test/run_switchdialog_test.sh $(top_builddir)
|
2015-09-04 14:46:13 -04:00
|
|
|
echo "Test 4"
|
2015-10-31 13:04:55 -04:00
|
|
|
$(top_srcdir)/test/run_test.sh 202 $(top_srcdir)/test/run_dmenu_test.sh $(top_builddir)
|
2015-09-04 14:46:13 -04:00
|
|
|
echo "Test 5"
|
2015-10-31 13:04:55 -04:00
|
|
|
$(top_srcdir)/test/run_test.sh 203 $(top_srcdir)/test/run_dmenu_custom_test.sh $(top_builddir)
|
2015-09-04 14:46:13 -04:00
|
|
|
echo "Test 6"
|
2015-10-31 13:04:55 -04:00
|
|
|
$(top_srcdir)/test/run_test.sh 204 $(top_srcdir)/test/run_run_test.sh $(top_builddir)
|
2015-09-04 14:46:13 -04:00
|
|
|
echo "Test 7"
|
2015-10-31 13:04:55 -04:00
|
|
|
$(top_srcdir)/test/run_test.sh 205 $(top_srcdir)/test/run_script_test.sh $(top_builddir)
|
|
|
|
echo "Issue 256"
|
|
|
|
$(top_srcdir)/test/run_test.sh 206 $(top_srcdir)/test/run_issue_256.sh $(top_builddir)
|
2015-09-04 14:56:11 -04:00
|
|
|
echo "End tests"
|
2015-01-16 02:34:11 -05:00
|
|
|
|
|
|
|
|
2015-07-28 16:14:21 -04:00
|
|
|
.PHONY: indent
|
|
|
|
indent: ${rofi_SOURCES} ${top_srcdir}/config/config.def.c ${helper_test_SOURCES} ${textbox_test_SOURCES} ${rofi_test_SOURCES}
|
|
|
|
uncrustify -c ${top_srcdir}/data/uncrustify.cfg --replace $^
|
|
|
|
|
2015-01-16 02:34:11 -05:00
|
|
|
.PHONY: cppcheck
|
|
|
|
|
|
|
|
cppcheck: ${rofi_SOURCES}
|
|
|
|
cppcheck --std=c99 --platform=unix64 --enable=all -Uerror_dialog -I ${top_srcdir}/include/ $^
|
2015-01-17 12:27:41 -05:00
|
|
|
|
|
|
|
.PHONY: ohcount
|
|
|
|
|
|
|
|
ohcount: ${rofi_SOURCES}
|
|
|
|
ohcount -i ${top_srcdir}/source/
|