maemo-ui/src/Makefile.am
author renatofilho
Thu Sep 28 16:11:10 2006 +0100 (2006-09-28)
branchtrunk
changeset 23 915ef81992c0
child 27 af19eebeb4bf
permissions -rw-r--r--
[svn r24] - added automake macros;
     1 bin_PROGRAMS = mmyth
     2 
     3 mmyth_SOURCES =	\
     4 		mmyth_main.c			\
     5 		mmyth_ui.c				\
     6 		mmyth_uicommon.c		\
     7 		mmyth_epg_grid_view.c	\
     8 		mmyth_epg_grid_widget.c	\
     9 		mmyth_recordui.c		\
    10 		mmyth_uisettings.c		\
    11 		mmyth_schedulerui.c		\
    12 		mmyth_tvplayer.c
    13 
    14 mmyth_CFLAGS = \
    15 		$(GTK_CFLAGS) \
    16 		$(GLIB_CFLAGS) \
    17 		$(GST_CFLAGS) \
    18 		$(MYSQL_CFLAGS) \
    19 		$(LIBGMYTH_CFLAGS) \
    20 		-I$(top_srcdir)/src \
    21 		-DDATA_DIR=\""$(pkgdatadir)"\" \
    22 		-DPIX_DIR=\""$(pkgdatadir)/pixmaps/"\" \
    23 		-DICON_DIR=\""$(datadir)/pixmaps/"\" \
    24 		-g3 -O0
    25 
    26 mmyth_LDADD = 	\
    27 		$(LIBGMYTH_LIBS)
    28