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
|
INCLUDES=$(LIBSN_CFLAGS) -I$(top_srcdir) -DSN_API_NOT_YET_FROZEN=1
XLIB_TEST= \
test-launcher \
test-launchee \
test-monitor \
test-send-xmessage \
test-watch-xmessages
XCB_TEST= \
test-send-xmessage-xcb \
test-monitor-xcb \
test-launchee-xcb \
test-launcher-xcb \
test-watch-xmessages-xcb
check_PROGRAMS=$(XLIB_TEST) $(XCB_TEST)
test_launcher_SOURCES= test-launcher.c
test_launcher_LDADD= $(LIBSN_LIBS) $(top_builddir)/libsn/libstartup-notification-1.la
test_launchee_SOURCES= test-launchee.c
test_launchee_LDADD= $(LIBSN_LIBS) $(top_builddir)/libsn/libstartup-notification-1.la
test_monitor_SOURCES= test-monitor.c
test_monitor_LDADD= $(LIBSN_LIBS) $(top_builddir)/libsn/libstartup-notification-1.la
test_send_xmessage_SOURCES= test-send-xmessage.c
test_send_xmessage_LDADD= $(LIBSN_LIBS) $(top_builddir)/libsn/libstartup-notification-1.la
test_watch_xmessages_SOURCES= test-watch-xmessages.c
test_watch_xmessages_LDADD= $(LIBSN_LIBS) $(top_builddir)/libsn/libstartup-notification-1.la
test_watch_xmessages_xcb_SOURCES= test-watch-xmessages-xcb.c
test_watch_xmessages_xcb_LDADD= $(LIBSN_LIBS) $(top_builddir)/libsn/libstartup-notification-1.la
test_send_xmessage_xcb_SOURCES= test-send-xmessage-xcb.c
test_send_xmessage_xcb_LDADD= $(LIBSN_LIBS) $(top_builddir)/libsn/libstartup-notification-1.la
test_monitor_xcb_SOURCES= test-monitor-xcb.c
test_monitor_xcb_LDADD= $(LIBSN_LIBS) $(top_builddir)/libsn/libstartup-notification-1.la
test_launchee_xcb_SOURCES= test-launchee-xcb.c
test_launchee_xcb_LDADD= $(LIBSN_LIBS) $(top_builddir)/libsn/libstartup-notification-1.la
test_launcher_xcb_SOURCES= test-launcher-xcb.c
test_launcher_xcb_LDADD= $(LIBSN_LIBS) $(top_builddir)/libsn/libstartup-notification-1.la
EXTRA_DIST=test-boilerplate.h
|