rofi/Makefile.am

177 lines
4.0 KiB
Makefile
Raw Normal View History

2015-02-27 15:34:57 +00:00
# Specify automake version.
2015-03-01 19:17:30 +00:00
AUTOMAKE_OPTIONS = 1.11.3
2014-03-18 07:59:42 +00:00
##
# Rofi the program
##
2014-03-17 17:00:09 +00:00
bin_PROGRAMS=rofi
LIBS=\
@xft_LIBS@\
@x11_LIBS@\
2014-08-02 18:02:37 +00:00
@xinerama_LIBS@\
@pango_LIBS@
2014-03-17 17:00:09 +00:00
AM_CFLAGS=\
2015-02-01 14:12:29 +00:00
@EXTRA_CFLAGS@\
2014-03-17 17:00:09 +00:00
@xft_CFLAGS@\
@x11_CFLAGS@\
@xinerama_CFLAGS@\
2014-08-02 18:02:37 +00:00
@pango_CFLAGS@\
-DMANPAGE_PATH="\"$(mandir)/\""\
2014-03-17 17:00:09 +00:00
-I$(top_srcdir)/include/\
-I$(top_srcdir)/config/\
-I$(top_builddir)/\
-Werror=missing-prototypes
2014-03-17 17:00:09 +00:00
rofi_SOURCES=\
source/rofi.c\
source/i3-support.c\
2014-03-17 17:00:09 +00:00
source/textbox.c\
source/xrmoptions.c\
source/history.c\
2015-01-11 12:25:19 +00:00
config/config.c\
source/helper.c\
source/keyb.c\
source/x11-helper.c\
2015-03-25 07:36:19 +00:00
source/dialogs/dmenu.c\
source/dialogs/run.c\
source/dialogs/window.c\
source/dialogs/ssh.c\
source/dialogs/script.c\
source/dialogs/combi.c\
2014-03-17 17:00:09 +00:00
include/rofi.h\
include/i3-support.h\
2014-03-17 17:00:09 +00:00
include/xrmoptions.h\
include/history.h\
include/textbox.h\
2015-02-09 18:35:51 +00:00
include/helper.h\
include/keyb.h\
include/x11-helper.h\
2015-03-25 07:36:19 +00:00
include/dialogs/run.h\
include/dialogs/combi.h\
2015-03-25 07:36:19 +00:00
include/dialogs/window.h\
include/dialogs/ssh.h\
include/dialogs/dmenu.h\
include/dialogs/script.h
2014-03-17 17:00:09 +00:00
##
# Manpage
##
man1_MANS=\
doc/rofi.1
2014-03-18 07:40:23 +00:00
##
# Readme.md
##
2014-03-20 07:51:54 +00:00
markdown_SC_FILES=\
2014-03-18 07:40:23 +00:00
README.md
2014-03-20 07:51:54 +00: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
README.html: README.md
2014-03-20 07:51:54 +00:00
$(md_verbose) markdown $< > $@
2014-03-17 17:00:09 +00:00
##
# config directory
##
2015-01-11 12:25:19 +00:00
${top_builddir}/config/config.c: ${top_srcdir}/config/config.def.c
cp ${top_srcdir}/config/config.def.c $@
2014-03-17 17:00:09 +00:00
##
# Extra DIST
##
EXTRA_DIST=\
2014-03-18 07:40:23 +00:00
$(man1_MANS)\
2014-04-24 06:03:38 +00:00
$(markdown_FILES)\
2014-07-21 14:41:31 +00:00
$(markdown_SC_FILES)\
Examples/i3_switch_workspaces.sh\
Examples/brightness_rofi.sh\
Examples/domo_rofi_script.sh\
2015-01-11 12:25:19 +00:00
${top_srcdir}/config/config.def.c\
INSTALL.md\
AUTHORS\
Changelog
##
# Indent
##
update-manpage: ${top_srcdir}/doc/rofi-manpage.markdown
2015-06-02 17:01:25 +00:00
ronn --roff --pipe $^ > ${top_srcdir}/doc/rofi.1
2014-08-29 14:24:39 +00: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\
source/keyb.c\
source/x11-helper.c\
2015-04-30 20:42:04 +00:00
source/xrmoptions.c\
source/helper.c\
include/keyb.h\
include/rofi.h\
include/textbox.h\
2015-04-30 20:42:04 +00:00
include/x11-helper.h\
include/xrmoptions.h\
include/helper.h\
test/textbox-test.c
helper_test_SOURCES=\
config/config.c\
include/rofi.h\
source/helper.c\
include/helper.h\
2015-02-17 14:19:26 +00:00
include/xrmoptions.h\
source/xrmoptions.c\
test/helper-test.c
.PHONY: test
test: ${bin_PROGRAMS}
./rofi_test
./helper_test
.PHONY: test-x
test-x: ${bin_PROGRAMS}
$(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
2015-01-16 07:34:11 +00:00
2015-07-28 20:14:21 +00: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 07:34:11 +00:00
.PHONY: cppcheck
cppcheck: ${rofi_SOURCES}
cppcheck --std=c99 --platform=unix64 --enable=all -Uerror_dialog -I ${top_srcdir}/include/ $^
2015-01-17 17:27:41 +00:00
.PHONY: ohcount
ohcount: ${rofi_SOURCES}
ohcount -i ${top_srcdir}/source/