2015-02-27 10:34:57 -05:00
|
|
|
# Specify automake version.
|
2021-08-14 07:03:16 -04:00
|
|
|
AUTOMAKE_OPTIONS = 1.11.3
|
2014-08-29 07:06:40 -04:00
|
|
|
|
2017-05-27 20:18:09 -04:00
|
|
|
ACLOCAL_AMFLAGS = -I subprojects/libnkutils -I subprojects/libgwater ${ACLOCAL_FLAGS}
|
2016-02-19 16:43:53 -05:00
|
|
|
|
2016-12-09 13:49:49 -05:00
|
|
|
AM_YFLAGS = -d
|
|
|
|
|
2016-02-19 16:43:53 -05:00
|
|
|
noinst_LIBRARIES =
|
2017-05-27 20:18:09 -04:00
|
|
|
EXTRA_DIST=
|
2018-03-29 06:47:17 -04:00
|
|
|
noinst_PROGRAMS=
|
2017-05-27 20:18:09 -04:00
|
|
|
check_PROGRAMS=
|
|
|
|
TESTS=
|
|
|
|
include $(top_srcdir)/subprojects/libnkutils/libnkutils-nolibtool.mk
|
2016-02-19 16:43:53 -05:00
|
|
|
include $(top_srcdir)/libgwater-xcb-nolibtool.mk
|
|
|
|
|
2017-02-16 16:32:15 -05:00
|
|
|
##
|
|
|
|
# PKG CONFIG file
|
|
|
|
##
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
pkgconfig_DATA = pkgconfig/rofi.pc
|
|
|
|
|
2017-01-01 10:52:25 -05:00
|
|
|
BUILT_SOURCES=\
|
|
|
|
lexer/theme-parser.h\
|
|
|
|
lexer/theme-parser.c\
|
2017-10-31 13:00:24 -04:00
|
|
|
lexer/theme-lexer.c\
|
|
|
|
resources/resources.c\
|
|
|
|
resources/resources.h
|
|
|
|
|
|
|
|
$(top_builddir)/resources/resources.c: $(top_srcdir)/resources/resources.xml
|
|
|
|
mkdir -p $(top_builddir)/resources/
|
2017-10-31 14:31:58 -04:00
|
|
|
$(GLIB_COMPILE_RESOURCES) $< --generate-source --target=$@ --sourcedir=$(top_srcdir)
|
2017-10-31 13:00:24 -04:00
|
|
|
|
|
|
|
$(top_builddir)/resources/resources.h: $(top_srcdir)/resources/resources.xml
|
|
|
|
mkdir -p $(top_builddir)/resources/
|
2017-10-31 14:31:58 -04:00
|
|
|
$(GLIB_COMPILE_RESOURCES) $< --generate-header --target=$@ --sourcedir=$(top_srcdir)
|
2017-01-01 10:52:25 -05:00
|
|
|
|
2017-03-26 17:19:30 -04:00
|
|
|
$(top_builddir)/lexer/theme-lexer.c: $(top_srcdir)/lexer/theme-lexer.l
|
|
|
|
|
|
|
|
$(top_builddir)/lexer/theme-parser.c $(top_builddir)/lexer/theme-parser.h: $(top_srcdir)/lexer/theme-parser.y
|
|
|
|
|
2017-02-17 08:06:31 -05:00
|
|
|
rofiincludedir=${includedir}/rofi
|
|
|
|
rofiinclude_HEADERS=\
|
|
|
|
include/mode.h\
|
|
|
|
include/mode-private.h\
|
2017-10-03 14:50:38 -04:00
|
|
|
include/helper.h\
|
2018-07-14 12:05:34 -04:00
|
|
|
include/rofi-types.h\
|
|
|
|
include/rofi-icon-fetcher.h
|
2017-01-01 10:52:25 -05:00
|
|
|
|
2014-03-18 03:59:42 -04:00
|
|
|
##
|
|
|
|
# Rofi the program
|
|
|
|
##
|
2014-03-17 13:00:09 -04:00
|
|
|
bin_PROGRAMS=rofi
|
|
|
|
|
2016-10-27 09:28:11 -04:00
|
|
|
dist_bin_SCRIPTS=\
|
|
|
|
script/rofi-sensible-terminal\
|
|
|
|
script/rofi-theme-selector
|
2015-08-03 14:40:01 -04:00
|
|
|
|
2016-03-12 08:00:19 -05:00
|
|
|
nodist_rofi_SOURCES=\
|
|
|
|
$(top_builddir)/gitconfig.h
|
|
|
|
|
2017-01-08 15:36:06 -05:00
|
|
|
SOURCES=\
|
2016-02-16 05:12:58 -05:00
|
|
|
source/rofi.c\
|
2016-02-06 07:06:58 -05:00
|
|
|
source/view.c\
|
2016-01-07 13:47:37 -05:00
|
|
|
source/mode.c\
|
2015-09-19 15:32:03 -04:00
|
|
|
source/keyb.c\
|
2016-02-16 05:12:58 -05:00
|
|
|
config/config.c\
|
2015-09-19 15:32:03 -04:00
|
|
|
source/helper.c\
|
2015-11-14 07:47:45 -05:00
|
|
|
source/timings.c\
|
2016-02-16 05:12:58 -05:00
|
|
|
source/history.c\
|
2016-12-09 13:49:49 -05:00
|
|
|
source/theme.c\
|
2017-06-20 15:02:13 -04:00
|
|
|
source/rofi-types.c\
|
2018-06-09 13:13:57 -04:00
|
|
|
source/rofi-icon-fetcher.c\
|
2016-10-08 12:57:59 -04:00
|
|
|
source/widgets/box.c\
|
2017-01-05 12:33:57 -05:00
|
|
|
source/widgets/container.c\
|
2018-06-09 13:13:57 -04:00
|
|
|
source/widgets/icon.c\
|
2016-10-08 12:57:59 -04:00
|
|
|
source/widgets/widget.c\
|
|
|
|
source/widgets/textbox.c\
|
|
|
|
source/widgets/listview.c\
|
|
|
|
source/widgets/scrollbar.c\
|
2016-02-16 05:12:58 -05:00
|
|
|
source/xrmoptions.c\
|
2017-06-01 06:00:51 -04:00
|
|
|
source/xcb.c\
|
2017-05-15 16:46:33 -04:00
|
|
|
source/css-colors.c\
|
2022-02-23 17:18:53 -05:00
|
|
|
source/modes/run.c\
|
|
|
|
source/modes/ssh.c\
|
|
|
|
source/modes/drun.c\
|
|
|
|
source/modes/dmenu.c\
|
|
|
|
source/modes/combi.c\
|
|
|
|
source/modes/window.c\
|
|
|
|
source/modes/script.c\
|
|
|
|
source/modes/help-keys.c\
|
|
|
|
source/modes/filebrowser.c\
|
2023-06-12 13:46:14 -04:00
|
|
|
source/modes/recursivebrowser.c\
|
2017-06-01 08:55:17 -04:00
|
|
|
include/display.h\
|
2016-03-01 12:11:55 -05:00
|
|
|
include/xcb.h\
|
|
|
|
include/xcb-internal.h\
|
2016-02-16 05:12:58 -05:00
|
|
|
include/rofi.h\
|
2017-06-20 15:02:13 -04:00
|
|
|
include/rofi-types.h\
|
2018-06-09 13:13:57 -04:00
|
|
|
include/rofi-icon-fetcher.h\
|
2016-01-07 13:47:37 -05:00
|
|
|
include/mode.h\
|
|
|
|
include/mode-private.h\
|
2016-01-07 10:01:56 -05:00
|
|
|
include/settings.h\
|
2015-09-19 15:32:03 -04:00
|
|
|
include/keyb.h\
|
2016-02-06 07:06:58 -05:00
|
|
|
include/view.h\
|
2016-02-06 08:56:13 -05:00
|
|
|
include/view-internal.h\
|
2015-09-19 15:32:03 -04:00
|
|
|
include/helper.h\
|
2017-02-17 08:06:31 -05:00
|
|
|
include/helper-theme.h\
|
2015-11-14 07:47:45 -05:00
|
|
|
include/timings.h\
|
2016-02-16 05:12:58 -05:00
|
|
|
include/history.h\
|
2016-12-09 13:49:49 -05:00
|
|
|
include/theme.h\
|
2017-05-15 16:46:33 -04:00
|
|
|
include/css-colors.h\
|
2016-10-08 12:57:59 -04:00
|
|
|
include/widgets/box.h\
|
2017-01-05 12:33:57 -05:00
|
|
|
include/widgets/container.h\
|
2018-06-09 13:13:57 -04:00
|
|
|
include/widgets/icon.h\
|
2016-10-08 12:57:59 -04:00
|
|
|
include/widgets/widget.h\
|
2016-10-09 04:13:15 -04:00
|
|
|
include/widgets/widget-internal.h\
|
2016-10-08 12:57:59 -04:00
|
|
|
include/widgets/textbox.h\
|
|
|
|
include/widgets/listview.h\
|
|
|
|
include/widgets/scrollbar.h\
|
2016-02-16 05:12:58 -05:00
|
|
|
include/xrmoptions.h\
|
2022-02-23 17:18:53 -05:00
|
|
|
include/modes/ssh.h\
|
|
|
|
include/modes/run.h\
|
|
|
|
include/modes/drun.h\
|
|
|
|
include/modes/dmenu.h\
|
|
|
|
include/modes/combi.h\
|
|
|
|
include/modes/script.h\
|
|
|
|
include/modes/window.h\
|
|
|
|
include/modes/modes.h\
|
|
|
|
include/modes/help-keys.h\
|
|
|
|
include/modes/filebrowser.h\
|
2023-06-12 13:46:14 -04:00
|
|
|
include/modes/recursivebrowser.h\
|
2022-02-23 17:18:53 -05:00
|
|
|
include/modes/dmenuscriptshared.h\
|
2017-10-31 13:00:24 -04:00
|
|
|
resources/resources.c\
|
|
|
|
resources/resources.h
|
2016-02-16 05:12:58 -05:00
|
|
|
|
2017-01-08 15:36:06 -05:00
|
|
|
rofi_SOURCES=\
|
|
|
|
lexer/theme-parser.y\
|
|
|
|
lexer/theme-lexer.l\
|
2017-10-31 13:00:24 -04:00
|
|
|
resources/resources.xml\
|
2017-01-08 15:36:06 -05:00
|
|
|
$(SOURCES)
|
|
|
|
|
2016-02-16 05:12:58 -05:00
|
|
|
rofi_CFLAGS=\
|
|
|
|
$(AM_CFLAGS)\
|
|
|
|
$(glib_CFLAGS)\
|
2017-05-27 20:18:09 -04:00
|
|
|
$(NKUTILS_CFLAGS)\
|
2016-02-19 16:43:53 -05:00
|
|
|
$(GW_XCB_CFLAGS)\
|
2016-02-16 05:12:58 -05:00
|
|
|
$(pango_CFLAGS)\
|
|
|
|
$(libsn_CFLAGS)\
|
|
|
|
$(cairo_CFLAGS)\
|
2020-10-20 14:38:13 -04:00
|
|
|
$(gdkpixbuf_CFLAGS)\
|
2022-11-08 13:18:45 -05:00
|
|
|
$(imdclient_CFLAGS)\
|
2016-02-16 05:12:58 -05:00
|
|
|
-DMANPAGE_PATH="\"$(mandir)/\""\
|
|
|
|
-I$(top_srcdir)/include/\
|
2017-05-04 15:41:38 -04:00
|
|
|
-I$(top_builddir)/lexer/\
|
2017-05-04 15:49:24 -04:00
|
|
|
-I$(top_srcdir)/lexer/\
|
2017-10-31 13:16:08 -04:00
|
|
|
-I$(top_builddir)/resources/\
|
2016-02-16 05:12:58 -05:00
|
|
|
-I$(top_srcdir)/config/\
|
|
|
|
-I$(top_builddir)/\
|
2016-04-01 13:51:24 -04:00
|
|
|
-Werror=missing-prototypes\
|
2017-01-01 10:32:01 -05:00
|
|
|
-DSYSCONFDIR=\"$(sysconfdir)\"\
|
2017-04-17 11:46:01 -04:00
|
|
|
-DPLUGIN_PATH=\"${libdir}/rofi\"\
|
2017-04-17 12:18:07 -04:00
|
|
|
-DTHEME_DIR=\"$(themedir)\"
|
2016-02-16 05:12:58 -05:00
|
|
|
|
|
|
|
rofi_LDADD=\
|
|
|
|
$(glib_LIBS)\
|
2017-05-27 20:18:09 -04:00
|
|
|
$(NKUTILS_LIBS)\
|
2016-02-19 16:43:53 -05:00
|
|
|
$(GW_XCB_LIBS)\
|
2016-02-16 05:12:58 -05:00
|
|
|
$(libsn_LIBS)\
|
|
|
|
$(pango_LIBS)\
|
|
|
|
$(cairo_LIBS)\
|
2020-10-20 14:38:13 -04:00
|
|
|
$(gdkpixbuf_LIBS)\
|
2022-11-08 13:18:45 -05:00
|
|
|
$(imdclient_LIBS)\
|
2016-02-16 05:12:58 -05:00
|
|
|
$(LIBS)
|
2014-03-17 13:00:09 -04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Manpage
|
|
|
|
##
|
2016-02-16 05:12:58 -05:00
|
|
|
dist_man1_MANS=\
|
|
|
|
doc/rofi.1\
|
2017-11-05 09:28:17 -05:00
|
|
|
doc/rofi-theme-selector.1\
|
2015-09-15 01:54:48 -04:00
|
|
|
doc/rofi-sensible-terminal.1
|
2014-03-17 13:00:09 -04:00
|
|
|
|
2017-03-18 10:57:34 -04:00
|
|
|
dist_man5_MANS=\
|
2020-02-02 11:21:21 -05:00
|
|
|
doc/rofi-theme.5\
|
2022-04-11 05:19:34 -04:00
|
|
|
doc/rofi-debugging.5\
|
2021-12-15 15:31:44 -05:00
|
|
|
doc/rofi-keys.5\
|
2021-12-17 05:13:29 -05:00
|
|
|
doc/rofi-dmenu.5\
|
2020-02-02 11:21:21 -05:00
|
|
|
doc/rofi-script.5
|
2017-03-18 10:57:34 -04:00
|
|
|
|
2018-03-29 06:47:56 -04:00
|
|
|
EXTRA_DIST += \
|
|
|
|
doc/rofi-theme.5.markdown \
|
2022-04-11 05:19:34 -04:00
|
|
|
doc/rofi-debugging.5.markdown \
|
2020-02-02 11:21:21 -05:00
|
|
|
doc/rofi-script.5.markdown \
|
2021-12-17 05:13:29 -05:00
|
|
|
doc/rofi-keys.5.markdown \
|
|
|
|
doc/rofi-dmenu.5.markdown \
|
2018-03-29 06:47:56 -04:00
|
|
|
doc/rofi-theme-selector.1.markdown \
|
2020-09-19 10:49:50 -04:00
|
|
|
doc/rofi-sensible-terminal.1.markdown \
|
2021-11-28 10:21:36 -05:00
|
|
|
doc/rofi.1.markdown\
|
|
|
|
README.md
|
2018-03-29 06:47:56 -04:00
|
|
|
|
2016-10-27 09:28:11 -04:00
|
|
|
###
|
|
|
|
# Themes
|
|
|
|
###
|
|
|
|
themedir=$(pkgdatadir)/themes/
|
|
|
|
theme_DATA=\
|
2017-01-19 03:19:14 -05:00
|
|
|
themes/Adapta-Nokto.rasi\
|
|
|
|
themes/Arc.rasi\
|
2018-02-25 09:18:37 -05:00
|
|
|
themes/Arc-Dark.rasi\
|
2017-01-19 03:19:14 -05:00
|
|
|
themes/DarkBlue.rasi\
|
|
|
|
themes/Indego.rasi\
|
|
|
|
themes/Monokai.rasi\
|
|
|
|
themes/Paper.rasi\
|
|
|
|
themes/android_notification.rasi\
|
2017-01-19 12:58:07 -05:00
|
|
|
themes/arthur.rasi\
|
2017-01-19 03:19:14 -05:00
|
|
|
themes/blue.rasi\
|
|
|
|
themes/c64.rasi\
|
2017-06-05 14:31:32 -04:00
|
|
|
themes/dmenu.rasi\
|
2021-02-14 07:31:47 -05:00
|
|
|
themes/docu.rasi\
|
2017-01-19 03:19:14 -05:00
|
|
|
themes/glue_pro_blue.rasi\
|
2022-12-30 05:54:15 -05:00
|
|
|
themes/gruvbox-common.rasinc\
|
2017-01-19 03:19:14 -05:00
|
|
|
themes/gruvbox-dark-hard.rasi\
|
|
|
|
themes/gruvbox-dark-soft.rasi\
|
|
|
|
themes/gruvbox-dark.rasi\
|
|
|
|
themes/gruvbox-light-hard.rasi\
|
|
|
|
themes/gruvbox-light-soft.rasi\
|
|
|
|
themes/gruvbox-light.rasi\
|
|
|
|
themes/lb.rasi\
|
2017-01-19 12:58:07 -05:00
|
|
|
themes/paper-float.rasi\
|
2017-01-19 03:19:14 -05:00
|
|
|
themes/purple.rasi\
|
2017-01-19 12:58:07 -05:00
|
|
|
themes/sidebar.rasi\
|
2022-06-27 10:56:59 -04:00
|
|
|
themes/sidebar-v2.rasi\
|
2017-01-19 03:19:14 -05:00
|
|
|
themes/solarized.rasi\
|
2019-05-14 05:35:30 -04:00
|
|
|
themes/solarized_alternate.rasi\
|
2021-08-17 06:04:16 -04:00
|
|
|
themes/fancy.rasi\
|
2022-12-31 17:54:14 -05:00
|
|
|
themes/fancy2.rasi\
|
2021-08-17 06:04:16 -04:00
|
|
|
themes/iggy.rasi\
|
2022-12-31 17:21:03 -05:00
|
|
|
themes/material.rasi\
|
2023-01-09 18:48:52 -05:00
|
|
|
themes/fullscreen-preview.rasi\
|
2021-08-24 12:19:25 -04:00
|
|
|
themes/iggy.jpg
|
2016-10-27 09:28:11 -04:00
|
|
|
|
2015-12-08 02:39:18 -05:00
|
|
|
##
|
2014-03-17 13:00:09 -04:00
|
|
|
# Extra DIST
|
|
|
|
##
|
2017-05-27 20:18:09 -04:00
|
|
|
EXTRA_DIST+=\
|
2016-02-16 05:12:58 -05:00
|
|
|
$(markdown_FILES)\
|
|
|
|
Examples/i3_switch_workspaces.sh\
|
2018-11-01 04:32:00 -04:00
|
|
|
Examples/i3_empty_workspace.sh\
|
|
|
|
Examples/test_script_mode.sh\
|
|
|
|
Examples/rofi-file-browser.sh\
|
2016-02-16 05:12:58 -05:00
|
|
|
INSTALL.md\
|
2015-01-25 04:11:44 -05:00
|
|
|
AUTHORS\
|
2016-01-07 07:38:53 -05:00
|
|
|
doc/rofi.doxy.in\
|
2016-03-12 08:00:19 -05:00
|
|
|
script/get_git_rev.sh\
|
2016-10-27 09:28:11 -04:00
|
|
|
$(theme_DATA)\
|
2021-07-09 18:25:20 -04:00
|
|
|
doc/default_configuration.rasi\
|
2021-08-24 12:19:25 -04:00
|
|
|
doc/default_theme.rasi\
|
2015-01-25 04:11:44 -05:00
|
|
|
Changelog
|
2014-05-24 04:18:36 -04:00
|
|
|
##
|
|
|
|
# Indent
|
|
|
|
##
|
|
|
|
|
2022-04-11 05:19:34 -04:00
|
|
|
update-manpage: $(top_srcdir)/doc/rofi-theme-selector.1.markdown $(top_srcdir)/doc/rofi.1.markdown $(top_srcdir)/doc/rofi-theme.5.markdown $(top_srcdir)/doc/rofi-script.5.markdown ${top_srcdir}/doc/rofi-sensible-terminal.1.markdown ${top_srcdir}/doc/rofi-keys.5.markdown ${top_srcdir}/doc/rofi-dmenu.5.markdown $(top_srcdir)/doc/rofi-debugging.5.markdown
|
2020-02-02 11:21:21 -05:00
|
|
|
go-md2man -in $(top_srcdir)/doc/rofi.1.markdown -out $(top_srcdir)/doc/rofi.1
|
|
|
|
go-md2man -in $(top_srcdir)/doc/rofi-theme-selector.1.markdown -out $(top_srcdir)/doc/rofi-theme-selector.1
|
|
|
|
go-md2man -in $(top_srcdir)/doc/rofi-theme.5.markdown -out $(top_srcdir)/doc/rofi-theme.5
|
2022-04-11 05:19:34 -04:00
|
|
|
go-md2man -in $(top_srcdir)/doc/rofi-debugging.5.markdown -out $(top_srcdir)/doc/rofi-debugging.5
|
2021-12-15 15:31:44 -05:00
|
|
|
go-md2man -in $(top_srcdir)/doc/rofi-keys.5.markdown -out $(top_srcdir)/doc/rofi-keys.5
|
2020-02-02 11:21:21 -05:00
|
|
|
go-md2man -in $(top_srcdir)/doc/rofi-script.5.markdown -out $(top_srcdir)/doc/rofi-script.5
|
2021-12-17 05:13:29 -05:00
|
|
|
go-md2man -in $(top_srcdir)/doc/rofi-dmenu.5.markdown -out $(top_srcdir)/doc/rofi-dmenu.5
|
2020-09-19 10:49:50 -04:00
|
|
|
go-md2man -in $(top_srcdir)/doc/rofi-sensible-terminal.1.markdown -out $(top_srcdir)/doc/rofi-sensible-terminal.1
|
2014-08-29 10:24:39 -04:00
|
|
|
|
2014-11-26 13:40:49 -05:00
|
|
|
##
|
|
|
|
# Rofi test program
|
|
|
|
##
|
2017-05-27 20:18:09 -04:00
|
|
|
check_PROGRAMS+=\
|
2016-10-20 13:34:03 -04:00
|
|
|
history_test\
|
|
|
|
textbox_test\
|
|
|
|
helper_test\
|
|
|
|
helper_expand\
|
|
|
|
helper_pidfile\
|
|
|
|
helper_config_cmdline_parser\
|
2016-10-21 12:48:01 -04:00
|
|
|
widget_test\
|
2016-10-24 11:48:04 -04:00
|
|
|
box_test\
|
2017-04-30 12:34:37 -04:00
|
|
|
scrollbar_test
|
|
|
|
|
2017-04-30 14:03:31 -04:00
|
|
|
if USE_CHECK
|
2017-09-29 12:44:21 -04:00
|
|
|
check_PROGRAMS+=mode_test theme_parser_test helper_tokenize
|
2017-04-30 12:34:37 -04:00
|
|
|
endif
|
|
|
|
|
2016-03-21 15:27:16 -04:00
|
|
|
history_test_CFLAGS=\
|
2016-02-21 06:57:30 -05:00
|
|
|
$(AM_CFLAGS)\
|
|
|
|
$(glib_CFLAGS)\
|
2017-06-01 06:00:51 -04:00
|
|
|
$(NKUTILS_CFLAGS)\
|
2016-03-01 12:11:55 -05:00
|
|
|
$(libsn_CFLAGS)\
|
2017-04-12 11:58:32 -04:00
|
|
|
$(cairo_CFLAGS)\
|
2022-11-19 16:04:25 -05:00
|
|
|
$(pango_CFLAGS)\
|
2017-04-17 12:18:07 -04:00
|
|
|
-DTHEME_DIR=\"$(themedir)\"\
|
2017-04-25 05:44:13 -04:00
|
|
|
-DPLUGIN_PATH=\"${libdir}/rofi\"\
|
2016-02-21 06:57:30 -05:00
|
|
|
-I$(top_srcdir)/include/\
|
|
|
|
-I$(top_srcdir)/config/\
|
|
|
|
-I$(top_builddir)/
|
|
|
|
|
2016-03-21 15:27:16 -04:00
|
|
|
history_test_LDADD=\
|
2017-06-01 06:00:51 -04:00
|
|
|
$(glib_LIBS)\
|
2022-11-19 16:04:25 -05:00
|
|
|
$(pango_LIBS)\
|
2017-06-01 06:00:51 -04:00
|
|
|
$(NKUTILS_LIBS)
|
2016-02-21 06:57:30 -05:00
|
|
|
|
2016-03-21 15:27:16 -04:00
|
|
|
history_test_SOURCES=\
|
2016-02-16 05:12:58 -05:00
|
|
|
source/history.c\
|
|
|
|
config/config.c\
|
|
|
|
include/rofi.h\
|
2016-01-07 13:47:37 -05:00
|
|
|
include/mode.h\
|
|
|
|
include/mode-private.h\
|
2016-01-07 10:01:56 -05:00
|
|
|
include/settings.h\
|
2016-02-16 05:12:58 -05:00
|
|
|
include/history.h\
|
2014-11-26 13:40:49 -05:00
|
|
|
test/history-test.c
|
|
|
|
|
2016-02-21 06:57:30 -05:00
|
|
|
textbox_test_CFLAGS=\
|
|
|
|
$(AM_CFLAGS)\
|
|
|
|
$(glib_CFLAGS)\
|
|
|
|
$(pango_CFLAGS)\
|
2017-06-01 06:00:51 -04:00
|
|
|
$(NKUTILS_CFLAGS)\
|
2016-02-21 10:40:29 -05:00
|
|
|
$(GW_XCB_CFLAGS)\
|
2016-02-21 06:57:30 -05:00
|
|
|
$(cairo_CFLAGS)\
|
2016-03-01 12:11:55 -05:00
|
|
|
$(libsn_CFLAGS)\
|
2020-10-20 14:38:13 -04:00
|
|
|
$(gdkpixbuf_CFLAGS)\
|
2022-11-19 16:04:25 -05:00
|
|
|
$(pango_CFLAGS)\
|
2017-04-25 05:44:13 -04:00
|
|
|
-DPLUGIN_PATH=\"${libdir}/rofi\"\
|
2017-04-17 12:18:07 -04:00
|
|
|
-DTHEME_DIR=\"$(themedir)\"\
|
2016-02-21 06:57:30 -05:00
|
|
|
-I$(top_srcdir)/include/\
|
2017-05-04 15:41:38 -04:00
|
|
|
-I$(top_builddir)/lexer/\
|
2017-05-04 15:49:24 -04:00
|
|
|
-I$(top_srcdir)/lexer/\
|
2016-02-21 06:57:30 -05:00
|
|
|
-I$(top_srcdir)/config/\
|
2021-08-24 12:19:25 -04:00
|
|
|
-I$(top_builddir)/resources/\
|
2016-02-21 06:57:30 -05:00
|
|
|
-I$(top_builddir)/
|
|
|
|
|
|
|
|
textbox_test_LDADD=\
|
|
|
|
$(glib_LIBS)\
|
|
|
|
$(pango_LIBS)\
|
2017-06-01 06:00:51 -04:00
|
|
|
$(NKUTILS_LIBS)\
|
2016-02-21 10:40:29 -05:00
|
|
|
$(GW_XCB_LIBS)\
|
2016-03-01 12:11:55 -05:00
|
|
|
$(cairo_LIBS)\
|
2022-11-19 16:04:25 -05:00
|
|
|
$(pango_LIBS)\
|
2016-03-01 12:11:55 -05:00
|
|
|
$(libsn_LIBS)
|
2016-02-21 06:57:30 -05:00
|
|
|
|
2016-10-20 13:34:03 -04:00
|
|
|
helper_pidfile_CFLAGS=$(textbox_test_CFLAGS)
|
|
|
|
helper_pidfile_LDADD=$(textbox_test_LDADD)
|
|
|
|
helper_pidfile_SOURCES=\
|
|
|
|
config/config.c\
|
|
|
|
include/rofi.h\
|
|
|
|
include/mode.h\
|
|
|
|
include/mode-private.h\
|
|
|
|
source/helper.c\
|
2021-06-01 08:21:21 -04:00
|
|
|
source/theme.c\
|
2021-09-20 13:57:12 -04:00
|
|
|
source/css-colors.c\
|
2017-06-20 15:02:13 -04:00
|
|
|
source/rofi-types.c\
|
|
|
|
include/rofi-types.h\
|
2016-10-20 13:34:03 -04:00
|
|
|
include/helper.h\
|
2017-02-17 08:06:31 -05:00
|
|
|
include/helper-theme.h\
|
2016-10-20 13:34:03 -04:00
|
|
|
include/xrmoptions.h\
|
|
|
|
source/xrmoptions.c\
|
|
|
|
test/helper-pidfile.c
|
2017-01-08 15:36:06 -05:00
|
|
|
|
2016-06-01 01:57:04 -04:00
|
|
|
widget_test_LDADD=$(textbox_test_LDADD)
|
|
|
|
widget_test_CFLAGS=$(textbox_test_CFLAGS)
|
|
|
|
widget_test_SOURCES=\
|
2016-10-08 12:57:59 -04:00
|
|
|
source/widgets/widget.c\
|
2017-01-01 10:32:01 -05:00
|
|
|
source/widgets/textbox.c\
|
|
|
|
source/theme.c\
|
2017-06-20 15:02:13 -04:00
|
|
|
source/rofi-types.c\
|
|
|
|
include/rofi-types.h\
|
2017-05-15 16:46:33 -04:00
|
|
|
source/css-colors.c\
|
2017-01-01 10:32:01 -05:00
|
|
|
source/helper.c\
|
|
|
|
config/config.c\
|
|
|
|
lexer/theme-parser.y\
|
|
|
|
lexer/theme-lexer.l\
|
2021-08-24 12:19:25 -04:00
|
|
|
test/widget-test.c\
|
|
|
|
resources/resources.c
|
2016-10-21 12:48:01 -04:00
|
|
|
|
|
|
|
box_test_LDADD=$(textbox_test_LDADD)
|
|
|
|
box_test_CFLAGS=$(textbox_test_CFLAGS)
|
|
|
|
box_test_SOURCES=\
|
|
|
|
source/widgets/widget.c\
|
|
|
|
source/widgets/box.c\
|
2016-12-16 03:28:13 -05:00
|
|
|
lexer/theme-parser.y\
|
|
|
|
lexer/theme-lexer.l\
|
|
|
|
source/theme.c\
|
2017-06-20 15:02:13 -04:00
|
|
|
source/rofi-types.c\
|
|
|
|
include/rofi-types.h\
|
2017-05-15 16:46:33 -04:00
|
|
|
source/css-colors.c\
|
2017-01-01 11:03:42 -05:00
|
|
|
include/theme.h\
|
2017-05-15 16:46:33 -04:00
|
|
|
include/css-colors.h\
|
2021-08-14 07:03:16 -04:00
|
|
|
config/config.c\
|
2021-08-24 12:19:25 -04:00
|
|
|
resources/resources.c\
|
2016-10-21 12:48:01 -04:00
|
|
|
test/box-test.c
|
2016-10-24 11:48:04 -04:00
|
|
|
|
|
|
|
scrollbar_test_LDADD=$(textbox_test_LDADD)
|
|
|
|
scrollbar_test_CFLAGS=$(textbox_test_CFLAGS)
|
|
|
|
scrollbar_test_SOURCES=\
|
|
|
|
source/widgets/widget.c\
|
|
|
|
source/widgets/scrollbar.c\
|
2016-12-16 03:28:13 -05:00
|
|
|
lexer/theme-parser.y\
|
|
|
|
lexer/theme-lexer.l\
|
|
|
|
source/theme.c\
|
2017-06-20 15:02:13 -04:00
|
|
|
source/rofi-types.c\
|
|
|
|
include/rofi-types.h\
|
2017-05-15 16:46:33 -04:00
|
|
|
source/css-colors.c\
|
2017-01-01 11:03:42 -05:00
|
|
|
include/theme.h\
|
2017-05-15 16:46:33 -04:00
|
|
|
include/css-colors.h\
|
2021-08-14 07:03:16 -04:00
|
|
|
config/config.c\
|
2021-08-24 12:19:25 -04:00
|
|
|
test/scrollbar-test.c\
|
|
|
|
resources/resources.c
|
2016-10-24 11:48:04 -04:00
|
|
|
|
2014-11-26 13:40:49 -05:00
|
|
|
textbox_test_SOURCES=\
|
2016-10-08 12:57:59 -04:00
|
|
|
source/widgets/widget.c\
|
|
|
|
source/widgets/textbox.c\
|
2016-12-16 03:28:13 -05:00
|
|
|
lexer/theme-parser.y\
|
|
|
|
lexer/theme-lexer.l\
|
|
|
|
source/theme.c\
|
2017-06-20 15:02:13 -04:00
|
|
|
source/rofi-types.c\
|
|
|
|
include/rofi-types.h\
|
2017-05-15 16:46:33 -04:00
|
|
|
source/css-colors.c\
|
2017-01-01 10:32:01 -05:00
|
|
|
source/helper.c\
|
2016-02-16 05:12:58 -05:00
|
|
|
config/config.c\
|
2015-04-30 15:47:32 -04:00
|
|
|
include/keyb.h\
|
2016-02-16 05:12:58 -05:00
|
|
|
include/rofi.h\
|
2016-01-07 13:47:37 -05:00
|
|
|
include/mode.h\
|
|
|
|
include/mode-private.h\
|
2016-01-07 10:01:56 -05:00
|
|
|
include/settings.h\
|
2016-10-08 12:57:59 -04:00
|
|
|
include/widgets/widget.h\
|
2016-10-09 04:13:15 -04:00
|
|
|
include/widgets/widget-internal.h\
|
2016-10-08 12:57:59 -04:00
|
|
|
include/widgets/textbox.h\
|
2015-04-30 16:42:04 -04:00
|
|
|
include/xrmoptions.h\
|
|
|
|
include/helper.h\
|
2017-02-17 08:06:31 -05:00
|
|
|
include/helper-theme.h\
|
2021-08-24 12:19:25 -04:00
|
|
|
resources/resources.c\
|
2014-11-26 13:40:49 -05:00
|
|
|
test/textbox-test.c
|
|
|
|
|
2017-04-30 14:03:31 -04:00
|
|
|
if USE_CHECK
|
2017-04-30 12:34:37 -04:00
|
|
|
theme_parser_test_CFLAGS=${helper_test_CFLAGS} $(check_CFLAGS)
|
|
|
|
theme_parser_test_LDADD=${helper_test_LDADD} $(check_LIBS)
|
2017-04-04 02:56:19 -04:00
|
|
|
theme_parser_test_SOURCES=\
|
|
|
|
config/config.c\
|
|
|
|
include/rofi.h\
|
|
|
|
include/mode.h\
|
|
|
|
include/mode-private.h\
|
|
|
|
source/helper.c\
|
|
|
|
include/helper.h\
|
|
|
|
include/helper-theme.h\
|
|
|
|
include/theme.h\
|
2017-05-15 16:46:33 -04:00
|
|
|
include/css-colors.h\
|
2017-04-04 02:56:19 -04:00
|
|
|
include/xrmoptions.h\
|
|
|
|
source/xrmoptions.c\
|
|
|
|
lexer/theme-lexer.c\
|
|
|
|
lexer/theme-parser.c\
|
|
|
|
lexer/theme-parser.h\
|
|
|
|
source/theme.c\
|
2017-06-20 15:02:13 -04:00
|
|
|
source/rofi-types.c\
|
|
|
|
include/rofi-types.h\
|
2017-05-15 16:46:33 -04:00
|
|
|
source/css-colors.c\
|
2021-08-24 12:19:25 -04:00
|
|
|
resources/resources.c\
|
2017-04-04 02:56:19 -04:00
|
|
|
test/theme-parser-test.c
|
2017-04-30 12:34:37 -04:00
|
|
|
endif
|
2017-04-04 02:56:19 -04:00
|
|
|
|
2014-11-26 13:40:49 -05:00
|
|
|
helper_test_SOURCES=\
|
2016-02-16 05:12:58 -05:00
|
|
|
config/config.c\
|
|
|
|
include/rofi.h\
|
2016-01-07 13:47:37 -05:00
|
|
|
include/mode.h\
|
|
|
|
include/mode-private.h\
|
2016-02-16 05:12:58 -05:00
|
|
|
source/helper.c\
|
|
|
|
include/helper.h\
|
2017-02-17 08:06:31 -05:00
|
|
|
include/helper-theme.h\
|
2015-02-17 09:19:26 -05:00
|
|
|
include/xrmoptions.h\
|
2015-02-17 04:31:59 -05:00
|
|
|
source/xrmoptions.c\
|
2021-06-01 08:21:21 -04:00
|
|
|
source/theme.c\
|
2021-09-20 13:57:12 -04:00
|
|
|
source/css-colors.c\
|
2017-06-20 15:02:13 -04:00
|
|
|
source/rofi-types.c\
|
|
|
|
include/rofi-types.h\
|
2016-02-16 05:12:58 -05:00
|
|
|
test/helper-test.c
|
2014-11-26 13:40:49 -05:00
|
|
|
|
2016-02-21 06:57:30 -05:00
|
|
|
helper_test_CFLAGS=\
|
|
|
|
$(AM_CFLAGS)\
|
|
|
|
$(glib_CFLAGS)\
|
|
|
|
$(pango_CFLAGS)\
|
2017-06-01 06:00:51 -04:00
|
|
|
$(NKUTILS_CFLAGS)\
|
2016-02-27 19:21:22 -05:00
|
|
|
$(GW_XCB_CFLAGS)\
|
2016-02-21 06:57:30 -05:00
|
|
|
$(cairo_CFLAGS)\
|
2020-10-20 14:38:13 -04:00
|
|
|
$(gdkpixbuf_CFLAGS)\
|
2016-03-01 12:11:55 -05:00
|
|
|
$(libsn_CFLAGS)\
|
2017-04-25 05:44:13 -04:00
|
|
|
-DPLUGIN_PATH=\"${libdir}/rofi\"\
|
2017-04-17 12:18:07 -04:00
|
|
|
-DTHEME_DIR=\"$(themedir)\"\
|
2016-02-21 06:57:30 -05:00
|
|
|
-I$(top_srcdir)/include/\
|
2017-05-04 15:41:38 -04:00
|
|
|
-I$(top_builddir)/lexer/\
|
2017-05-04 15:49:24 -04:00
|
|
|
-I$(top_srcdir)/lexer/\
|
2016-02-21 06:57:30 -05:00
|
|
|
-I$(top_srcdir)/config/\
|
2021-08-24 12:19:25 -04:00
|
|
|
-I$(top_builddir)/resources/\
|
2016-02-21 06:57:30 -05:00
|
|
|
-I$(top_builddir)/
|
|
|
|
|
|
|
|
helper_test_LDADD=\
|
|
|
|
$(glib_LIBS)\
|
|
|
|
$(pango_LIBS)\
|
2017-06-01 06:00:51 -04:00
|
|
|
$(NKUTILS_LIBS)\
|
2016-02-27 19:21:22 -05:00
|
|
|
$(GW_XCB_LIBS)\
|
2016-03-04 11:03:24 -05:00
|
|
|
$(libsn_LIBS)\
|
2016-02-21 06:57:30 -05:00
|
|
|
$(cairo_LIBS)
|
|
|
|
|
2016-03-21 12:16:45 -04:00
|
|
|
helper_expand_SOURCES=\
|
|
|
|
config/config.c\
|
|
|
|
include/rofi.h\
|
|
|
|
include/mode.h\
|
|
|
|
include/mode-private.h\
|
|
|
|
source/helper.c\
|
2021-06-01 08:21:21 -04:00
|
|
|
source/theme.c\
|
2021-09-20 13:57:12 -04:00
|
|
|
source/css-colors.c\
|
2016-03-21 12:16:45 -04:00
|
|
|
include/helper.h\
|
2017-02-17 08:06:31 -05:00
|
|
|
include/helper-theme.h\
|
2016-03-21 12:16:45 -04:00
|
|
|
include/xrmoptions.h\
|
|
|
|
source/xrmoptions.c\
|
2017-06-20 15:02:13 -04:00
|
|
|
source/rofi-types.c\
|
|
|
|
include/rofi-types.h\
|
2016-03-21 12:16:45 -04:00
|
|
|
test/helper-expand.c
|
|
|
|
|
|
|
|
helper_expand_CFLAGS=${helper_test_CFLAGS}
|
|
|
|
|
|
|
|
helper_expand_LDADD=${helper_test_LDADD}
|
|
|
|
|
2016-03-22 05:43:42 -04:00
|
|
|
helper_config_cmdline_parser_CFLAGS=${helper_test_CFLAGS}
|
|
|
|
|
|
|
|
helper_config_cmdline_parser_LDADD=${helper_test_LDADD}
|
|
|
|
helper_config_cmdline_parser_SOURCES=\
|
|
|
|
config/config.c\
|
|
|
|
include/rofi.h\
|
|
|
|
include/mode.h\
|
|
|
|
include/mode-private.h\
|
|
|
|
source/helper.c\
|
2021-06-01 08:21:21 -04:00
|
|
|
source/theme.c\
|
2021-09-20 13:57:12 -04:00
|
|
|
source/css-colors.c\
|
2017-06-20 15:02:13 -04:00
|
|
|
source/rofi-types.c\
|
|
|
|
include/rofi-types.h\
|
2016-03-22 05:43:42 -04:00
|
|
|
include/helper.h\
|
2017-02-17 08:06:31 -05:00
|
|
|
include/helper-theme.h\
|
2016-03-22 05:43:42 -04:00
|
|
|
include/xrmoptions.h\
|
|
|
|
source/xrmoptions.c\
|
|
|
|
test/helper-config-cmdline-parser.c
|
|
|
|
|
2017-04-30 14:03:31 -04:00
|
|
|
if USE_CHECK
|
2017-04-29 11:51:38 -04:00
|
|
|
mode_test_CFLAGS=$(textbox_test_CFLAGS) $(check_CFLAGS)
|
|
|
|
mode_test_LDADD=$(textbox_test_LDADD) $(check_LIBS)
|
2017-04-28 03:43:12 -04:00
|
|
|
mode_test_SOURCES=\
|
|
|
|
config/config.c\
|
|
|
|
test/mode-test.c\
|
2022-02-23 17:18:53 -05:00
|
|
|
source/modes/help-keys.c\
|
2017-04-28 03:43:12 -04:00
|
|
|
source/helper.c\
|
2021-06-05 06:58:07 -04:00
|
|
|
source/theme.c\
|
2021-09-20 13:57:12 -04:00
|
|
|
source/css-colors.c\
|
|
|
|
source/mode.c\
|
2017-06-20 15:02:13 -04:00
|
|
|
source/rofi-types.c\
|
|
|
|
include/rofi-types.h\
|
2017-04-28 03:43:12 -04:00
|
|
|
source/xrmoptions.c\
|
|
|
|
source/keyb.c\
|
|
|
|
include/mode.h\
|
|
|
|
include/mode-private.h
|
2017-09-29 12:44:21 -04:00
|
|
|
helper_tokenize_CFLAGS=$(textbox_test_CFLAGS) $(check_CFLAGS)
|
|
|
|
helper_tokenize_LDADD=$(textbox_test_LDADD) $(check_LIBS)
|
|
|
|
helper_tokenize_SOURCES=\
|
|
|
|
config/config.c\
|
|
|
|
include/rofi.h\
|
|
|
|
include/mode.h\
|
|
|
|
include/mode-private.h\
|
|
|
|
source/helper.c\
|
2021-06-05 06:58:07 -04:00
|
|
|
source/theme.c\
|
2021-09-20 13:57:12 -04:00
|
|
|
source/css-colors.c\
|
2017-09-29 12:44:21 -04:00
|
|
|
source/rofi-types.c\
|
|
|
|
include/rofi-types.h\
|
|
|
|
include/helper.h\
|
|
|
|
include/helper-theme.h\
|
|
|
|
include/xrmoptions.h\
|
|
|
|
source/xrmoptions.c\
|
|
|
|
test/helper-tokenize.c
|
2017-04-30 12:34:37 -04:00
|
|
|
endif
|
2017-04-28 03:43:12 -04:00
|
|
|
|
2017-05-27 20:18:09 -04:00
|
|
|
TESTS+=\
|
2016-03-21 15:27:16 -04:00
|
|
|
history_test\
|
2016-03-21 12:16:45 -04:00
|
|
|
helper_test\
|
2016-03-22 05:43:42 -04:00
|
|
|
helper_expand\
|
2016-10-20 13:34:03 -04:00
|
|
|
helper_pidfile\
|
2016-06-01 01:57:04 -04:00
|
|
|
helper_config_cmdline_parser\
|
2016-10-20 13:34:03 -04:00
|
|
|
textbox_test\
|
2016-10-21 12:48:01 -04:00
|
|
|
widget_test\
|
2016-10-24 11:48:04 -04:00
|
|
|
box_test\
|
2017-04-30 12:34:37 -04:00
|
|
|
scrollbar_test
|
|
|
|
|
2017-04-30 14:03:31 -04:00
|
|
|
if USE_CHECK
|
2017-04-30 12:34:37 -04:00
|
|
|
TESTS+=theme_parser_test\
|
2017-09-29 12:44:21 -04:00
|
|
|
helper_tokenize\
|
2017-04-28 03:43:12 -04:00
|
|
|
mode_test
|
2017-04-30 12:34:37 -04:00
|
|
|
endif
|
2015-03-03 16:11:17 -05:00
|
|
|
|
2015-01-16 02:34:11 -05:00
|
|
|
.PHONY: cppcheck
|
2016-02-16 05:12:58 -05:00
|
|
|
cppcheck: $(rofi_SOURCES)
|
2016-03-05 05:08:32 -05:00
|
|
|
cppcheck --std=c99 --platform=unix64 --enable=all -Uerror_dialog --inconclusive -I $(top_srcdir)/include/ $^
|
2015-01-17 12:27:41 -05:00
|
|
|
|
|
|
|
.PHONY: ohcount
|
2016-02-16 05:12:58 -05:00
|
|
|
ohcount: $(rofi_SOURCES)
|
|
|
|
ohcount -i $(top_srcdir)/source/ $(top_srcdir)/include/
|
2016-01-05 13:49:13 -05:00
|
|
|
|
2016-02-16 05:12:58 -05:00
|
|
|
doxy: doc/rofi.doxy $(rofi_SOURCES)
|
|
|
|
doxygen $(top_builddir)/doc/rofi.doxy
|
2016-01-07 07:38:53 -05:00
|
|
|
|
2016-03-12 08:00:19 -05:00
|
|
|
clean-local:
|
|
|
|
-rm $(top_builddir)/gitconfig.h
|
2017-10-31 13:00:24 -04:00
|
|
|
-rm $(top_builddir)/resources/resources.h
|
|
|
|
-rm $(top_builddir)/resources/resources.c
|
2016-03-12 08:00:19 -05:00
|
|
|
|
|
|
|
$(top_builddir)/gitconfig.h: .FORCE
|
|
|
|
$(top_srcdir)/script/get_git_rev.sh $(top_srcdir) $(top_builddir)/gitconfig.h
|
|
|
|
|
|
|
|
$(rofi_SOURCES): $(top_builddir)/gitconfig.h
|
|
|
|
|
2016-10-18 07:49:24 -04:00
|
|
|
.PHONY: coverage
|
|
|
|
coverage: coverage/index.html
|
|
|
|
|
2016-10-18 16:54:38 -04:00
|
|
|
.PHONY: coverage-cli
|
|
|
|
coverage-cli: coverage.info
|
|
|
|
lcov -l $^
|
2016-10-18 07:49:24 -04:00
|
|
|
coverage.info: $(top_builddir)/test/*.gcda $(top_builddir)/source/*.gcda $(top_builddir)/source/**/*.gcda
|
2021-08-14 07:03:16 -04:00
|
|
|
lcov --capture --directory $(top_builddir) --output-file coverage.info
|
2016-10-18 16:54:38 -04:00
|
|
|
lcov -r $@ /usr/include/\* -o $@
|
2016-10-18 07:49:24 -04:00
|
|
|
|
|
|
|
coverage/index.html: coverage.info
|
|
|
|
genhtml $^ --output-directory coverage/
|
|
|
|
|
2016-10-18 16:54:38 -04:00
|
|
|
.PHONY: coverage-clean
|
|
|
|
coverage-clean:
|
|
|
|
-rm -r coverage.info coverage/
|
2016-10-20 03:41:32 -04:00
|
|
|
-find $(top_builddir) -name '*.gcda' | xargs rm
|
2016-10-18 16:54:38 -04:00
|
|
|
|
2016-03-12 08:00:19 -05:00
|
|
|
.PHONY: .FORCE
|
|
|
|
.FORCE:
|
2017-05-04 16:26:03 -04:00
|
|
|
|
2022-10-24 13:20:03 -04:00
|
|
|
icondir=$(datadir)/icons/hicolor/scalable/apps/
|
2022-05-25 12:21:27 -04:00
|
|
|
icon_DATA=\
|
|
|
|
data/rofi.svg
|
|
|
|
|
|
|
|
desktopdir=$(datadir)/applications/
|
|
|
|
desktop_DATA=\
|
|
|
|
data/rofi.desktop\
|
|
|
|
data/rofi-theme-selector.desktop
|
|
|
|
|
2017-05-04 16:26:03 -04:00
|
|
|
EXTRA_DIST += \
|
|
|
|
doc/meson.build \
|
2021-08-30 04:05:05 -04:00
|
|
|
subprojects/libgwater/mpd/meson.build \
|
|
|
|
subprojects/libgwater/nl/meson.build \
|
|
|
|
subprojects/libgwater/wayland/meson.build \
|
|
|
|
subprojects/libgwater/xcb/meson.build \
|
|
|
|
subprojects/libgwater/alsa-mixer/meson.build \
|
|
|
|
subprojects/libgwater/wayland-server/meson.build \
|
|
|
|
subprojects/libgwater/meson.build \
|
|
|
|
subprojects/libgwater/win/meson.build \
|
2017-05-27 20:18:09 -04:00
|
|
|
subprojects/libnkutils/meson.build \
|
2017-09-27 05:21:33 -04:00
|
|
|
subprojects/libnkutils/meson_options.txt \
|
2021-08-30 04:05:05 -04:00
|
|
|
subprojects/libgwater/wayland/libgwater-wayland.h \
|
|
|
|
subprojects/libgwater/wayland/libgwater-wayland.c \
|
|
|
|
subprojects/libgwater/wayland-server/libgwater-wayland-server.c \
|
|
|
|
subprojects/libgwater/wayland-server/libgwater-wayland-server.h \
|
|
|
|
subprojects/libgwater/mpd/libgwater-mpd.h \
|
|
|
|
subprojects/libgwater/mpd/libgwater-mpd.c \
|
|
|
|
subprojects/libgwater/nl/libgwater-nl.h \
|
|
|
|
subprojects/libgwater/nl/libgwater-nl.c \
|
|
|
|
subprojects/libgwater/alsa-mixer/libgwater-alsa-mixer.h \
|
|
|
|
subprojects/libgwater/alsa-mixer/libgwater-alsa-mixer.c \
|
2022-05-25 12:21:27 -04:00
|
|
|
data/rofi.png\
|
2017-05-15 07:17:06 -04:00
|
|
|
meson_options.txt \
|
2017-05-04 16:26:03 -04:00
|
|
|
meson.build
|
2022-05-25 12:21:27 -04:00
|
|
|
|
|
|
|
EXTRA_DIST += ${desktop_DATA}\
|
|
|
|
${icon_DATA}
|