maemo-ui-old/src/Makefile.am
author melunko
Wed Aug 01 14:50:29 2007 +0100 (2007-08-01)
branchtrunk
changeset 790 7a914b3fafc1
parent 413 maemo-ui/src/Makefile.am@5c9b6b51eb56
permissions -rw-r--r--
[svn r796] Moved maemo-ui to maemo-ui-old
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) \
rosfran@413
    18
		$(GSTBASE_CFLAGS) \
rosfran@51
    19
		$(GSTPLUGINSBASE_CFLAGS) \
renatofilho@20
    20
		$(MYSQL_CFLAGS) \
renatofilho@20
    21
		$(LIBGMYTH_CFLAGS) \
renatofilho@20
    22
		-I$(top_srcdir)/src \
renatofilho@20
    23
		-DDATA_DIR=\""$(pkgdatadir)"\" \
renatofilho@20
    24
		-DPIX_DIR=\""$(pkgdatadir)/pixmaps/"\" \
renatofilho@20
    25
		-DICON_DIR=\""$(datadir)/pixmaps/"\" \
renatofilho@20
    26
		-g3 -O0
renatofilho@20
    27
rosfran@413
    28
if MAEMO_PLATFORM 
rosfran@413
    29
mmyth_CFLAGS+= \
rosfran@413
    30
	$(HILDON_CFLAGS)
rosfran@413
    31
endif
rosfran@413
    32
renatofilho@20
    33
mmyth_LDADD = 	\
melunko@27
    34
		$(LIBGMYTH_LIBS) \
leo_sobral@45
    35
		$(GTK_LIBS) \
rosfran@413
    36
		$(GLIB_LIBS) \
leo_sobral@45
    37
		$(GST_LIBS) \
leo_sobral@45
    38
		$(GSTBASE_LIBS) \
rosfran@413
    39
		$(GSTPLUGINSBASE_LIBS) \
rosfran@245
    40
		$(GSTINTERFACES_LIBS)
renatofilho@20
    41
rosfran@413
    42
if MAEMO_PLATFORM
rosfran@413
    43
mmyth_LDADD += 	\
rosfran@413
    44
	$(HILDON_LIBS)
rosfran@413
    45
endif
rosfran@413
    46