maemo-ui/src/Makefile.am
author rosfran
Wed Oct 18 23:45:17 2006 +0100 (2006-10-18)
branchtrunk
changeset 34 c71d37b93734
parent 20 7174e23f7617
child 45 5c83cb526118
permissions -rw-r--r--
[svn r35] Performance optimization.
renatofilho@20
     1
bin_PROGRAMS = mmyth
renatofilho@20
     2
renatofilho@20
     3
mmyth_SOURCES =	\
renatofilho@20
     4
		mmyth_main.c			\
renatofilho@20
     5
		mmyth_ui.c				\
renatofilho@20
     6
		mmyth_uicommon.c		\
renatofilho@20
     7
		mmyth_epg_grid_view.c	\
renatofilho@20
     8
		mmyth_epg_grid_widget.c	\
renatofilho@20
     9
		mmyth_recordui.c		\
renatofilho@20
    10
		mmyth_uisettings.c		\
renatofilho@20
    11
		mmyth_schedulerui.c		\
renatofilho@20
    12
		mmyth_tvplayer.c
renatofilho@20
    13
renatofilho@20
    14
mmyth_CFLAGS = \
renatofilho@20
    15
		$(GTK_CFLAGS) \
renatofilho@20
    16
		$(GLIB_CFLAGS) \
renatofilho@20
    17
		$(GST_CFLAGS) \
renatofilho@20
    18
		$(MYSQL_CFLAGS) \
renatofilho@20
    19
		$(LIBGMYTH_CFLAGS) \
renatofilho@20
    20
		-I$(top_srcdir)/src \
renatofilho@20
    21
		-DDATA_DIR=\""$(pkgdatadir)"\" \
renatofilho@20
    22
		-DPIX_DIR=\""$(pkgdatadir)/pixmaps/"\" \
renatofilho@20
    23
		-DICON_DIR=\""$(datadir)/pixmaps/"\" \
renatofilho@20
    24
		-g3 -O0
renatofilho@20
    25
renatofilho@20
    26
mmyth_LDADD = 	\
melunko@27
    27
		$(LIBGMYTH_LIBS) \
melunko@27
    28
		$(GTK_LIBS)
renatofilho@20
    29