mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Fixing make dist after merge of make cleanups.
This commit is contained in:
parent
4c11da91f5
commit
d3a044db8e
2 changed files with 48 additions and 0 deletions
46
Makefile.am
46
Makefile.am
|
@ -137,6 +137,16 @@ update-manpage: $(top_srcdir)/doc/rofi-manpage.markdown
|
||||||
##
|
##
|
||||||
check_PROGRAMS=rofi_test textbox_test helper_test
|
check_PROGRAMS=rofi_test textbox_test helper_test
|
||||||
|
|
||||||
|
rofi_test_CFLAGS=\
|
||||||
|
$(AM_CFLAGS)\
|
||||||
|
$(glib_CFLAGS)\
|
||||||
|
-I$(top_srcdir)/include/\
|
||||||
|
-I$(top_srcdir)/config/\
|
||||||
|
-I$(top_builddir)/
|
||||||
|
|
||||||
|
rofi_test_LDADD=\
|
||||||
|
$(glib_LIBS)
|
||||||
|
|
||||||
|
|
||||||
rofi_test_SOURCES=\
|
rofi_test_SOURCES=\
|
||||||
source/history.c\
|
source/history.c\
|
||||||
|
@ -148,6 +158,24 @@ rofi_test_SOURCES=\
|
||||||
include/history.h\
|
include/history.h\
|
||||||
test/history-test.c
|
test/history-test.c
|
||||||
|
|
||||||
|
textbox_test_CFLAGS=\
|
||||||
|
$(AM_CFLAGS)\
|
||||||
|
$(glib_CFLAGS)\
|
||||||
|
$(pango_CFLAGS)\
|
||||||
|
$(x11_CFLAGS)\
|
||||||
|
$(xinerama_CFLAGS)\
|
||||||
|
$(cairo_CFLAGS)\
|
||||||
|
-I$(top_srcdir)/include/\
|
||||||
|
-I$(top_srcdir)/config/\
|
||||||
|
-I$(top_builddir)/
|
||||||
|
|
||||||
|
textbox_test_LDADD=\
|
||||||
|
$(glib_LIBS)\
|
||||||
|
$(pango_LIBS)\
|
||||||
|
$(x11_LIBS)\
|
||||||
|
$(xinerama_LIBS)\
|
||||||
|
$(cairo_LIBS)
|
||||||
|
|
||||||
textbox_test_SOURCES=\
|
textbox_test_SOURCES=\
|
||||||
source/widget.c\
|
source/widget.c\
|
||||||
source/textbox.c\
|
source/textbox.c\
|
||||||
|
@ -180,6 +208,24 @@ helper_test_SOURCES=\
|
||||||
source/xrmoptions.c\
|
source/xrmoptions.c\
|
||||||
test/helper-test.c
|
test/helper-test.c
|
||||||
|
|
||||||
|
helper_test_CFLAGS=\
|
||||||
|
$(AM_CFLAGS)\
|
||||||
|
$(glib_CFLAGS)\
|
||||||
|
$(pango_CFLAGS)\
|
||||||
|
$(x11_CFLAGS)\
|
||||||
|
$(xinerama_CFLAGS)\
|
||||||
|
$(cairo_CFLAGS)\
|
||||||
|
-I$(top_srcdir)/include/\
|
||||||
|
-I$(top_srcdir)/config/\
|
||||||
|
-I$(top_builddir)/
|
||||||
|
|
||||||
|
helper_test_LDADD=\
|
||||||
|
$(glib_LIBS)\
|
||||||
|
$(pango_LIBS)\
|
||||||
|
$(x11_LIBS)\
|
||||||
|
$(xinerama_LIBS)\
|
||||||
|
$(cairo_LIBS)
|
||||||
|
|
||||||
TESTS=\
|
TESTS=\
|
||||||
rofi_test\
|
rofi_test\
|
||||||
helper_test
|
helper_test
|
||||||
|
|
|
@ -81,6 +81,8 @@ static void history_test ( void )
|
||||||
TASSERT ( length == 25 );
|
TASSERT ( length == 25 );
|
||||||
|
|
||||||
g_strfreev ( retv );
|
g_strfreev ( retv );
|
||||||
|
|
||||||
|
unlink ( file );
|
||||||
}
|
}
|
||||||
|
|
||||||
int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
|
int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
|
||||||
|
|
Loading…
Reference in a new issue