gmyth/tests/Makefile.am
author ali@juiblex.co.uk
Sun Dec 13 21:21:32 2009 +0000 (2009-12-13)
branchtrunk
changeset 947 e6d7c7b6bb63
parent 925 4a8d56080089
permissions -rw-r--r--
Fix vpath handling in gmyth
     1 LDADD = \
     2 	$(top_builddir)/gmyth/libgmyth.la
     3 
     4 AM_LDFLAGS = \
     5 	@GLIB_LIBS@ @GOBJECT_LIBS@ @GTHREAD_LIBS@ @LIBCURL_LIBS@
     6 
     7 INCLUDES = \
     8 	-I$(top_srcdir) \
     9 	-I$(top_builddir) \
    10 	-I$(top_srcdir)/gmyth \
    11 	-I$(top_builddir)/gmyth \
    12 	$(MYSQL_CFLAGS) \
    13 	$(GLIB_CFLAGS) \
    14 	$(GOBJECT_CFLAGS) \
    15 	$(GTK_CFLAGS) \
    16 	$(LIBCURL_CFLAGS)
    17 
    18 check_PROGRAMS = \
    19 	test \
    20 	gmyth_test_connection \
    21 	gmyth_test_epg \
    22 	gmyth_test_recorder \
    23 	gmyth_test_recordings \
    24 	gmyth_test_transcode \
    25 	gmyth_test_vlc \
    26 	gmyth_test_livetv \
    27 	gmyth_test_http \
    28 	gmyth_test_filetransfer \
    29 	gmyth_test_filelocal \
    30 	gmyth_test_file_download \
    31 	gmyth_test_program_info \
    32 	gmyth_test_monitor_handler \
    33 	gmyth_test_stringlist \
    34 	gmyth_test_tvchain
    35 
    36 TESTS = \
    37 	relink.py \
    38 	test_main.py \
    39 	test_connection.py \
    40 	test_epg.py \
    41 	test_recorder.py \
    42 	test_recordings.py \
    43 	test_transcode.py \
    44 	test_vlc.py \
    45 	test_livetv.py \
    46 	test_http.py \
    47 	test_filetransfer.py \
    48 	test_filelocal.py \
    49 	test_file_download.py \
    50 	test_livetv_stress.py \
    51 	test_program_info.py \
    52 	test_monitor_handler.py \
    53 	test_stringlist.py \
    54 	test_tvchain.py
    55 
    56 TESTS_ENVIRONMENT = top_srcdir=$(top_srcdir)
    57 
    58 test_SOURCES = \
    59 	main.c
    60 
    61 gmyth_test_connection_SOURCES = \
    62 	gmyth_test_connection.c
    63 
    64 gmyth_test_http_SOURCES = \
    65 	gmyth_test_http.c
    66 
    67 gmyth_test_epg_SOURCES = \
    68 	gmyth_test_epg.c
    69 
    70 gmyth_test_recorder_SOURCES = \
    71 	gmyth_test_recorder.c
    72 
    73 gmyth_test_recordings_SOURCES = \
    74 	gmyth_test_recordings.c
    75 
    76 gmyth_test_vlc_SOURCES = \
    77 	gmyth_test_vlc.c
    78 
    79 gmyth_test_transcode_SOURCES = \
    80 	gmyth_test_transcode.c
    81 
    82 gmyth_test_livetv_SOURCES = \
    83 	gmyth_test_livetv.c
    84 
    85 gmyth_test_filetransfer_SOURCES = \
    86 	gmyth_test_filetransfer.c
    87 
    88 gmyth_test_filelocal_SOURCES = \
    89 	gmyth_test_filelocal.c
    90 
    91 gmyth_test_file_download_SOURCES = \
    92 	gmyth_test_file_download.c
    93 
    94 gmyth_test_program_info_SOURCES = \
    95 	gmyth_test_program_info.c
    96 
    97 gmyth_test_monitor_handler_SOURCES = \
    98 	gmyth_test_monitor_handler.c
    99 
   100 gmyth_test_stringlist_SOURCES = \
   101 	gmyth_test_stringlist.c
   102 
   103 gmyth_test_tvchain_SOURCES = \
   104 	gmyth_test_tvchain.c
   105 
   106 CLEANFILES = $(BUILT_SOURCES)