maemo-ui/src/Makefile.am
author morphbr
Tue May 29 21:24:48 2007 +0100 (2007-05-29)
branchtrunk
changeset 718 3fbcd3d9b2d1
parent 245 f9329edd3b5e
permissions -rw-r--r--
[svn r724] * GMyth-Streamer version 0.3 released
- Improved Log architecture;
- Creation of a history for the transcoder's actions
- Creation of an id for each transcoder instanciated
- Also wrapps default actions for python's default logger

- Created new functions to make use of this new Log architecture;
- serve_new_id
- serve_get_log
- serve_get_all_log

- _Lot_ of small bug fixes;

- Inserted header for all files;

- Splited files with too many lines (more than 1 class per file)
in more files;
     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 		$(GSTBASE_CFLAGS) \
    19 		$(GSTPLUGINSBASE_CFLAGS) \
    20 		$(MYSQL_CFLAGS) \
    21 		$(LIBGMYTH_CFLAGS) \
    22 		-I$(top_srcdir)/src \
    23 		-DDATA_DIR=\""$(pkgdatadir)"\" \
    24 		-DPIX_DIR=\""$(pkgdatadir)/pixmaps/"\" \
    25 		-DICON_DIR=\""$(datadir)/pixmaps/"\" \
    26 		-g3 -O0
    27 
    28 if MAEMO_PLATFORM 
    29 mmyth_CFLAGS+= \
    30 	$(HILDON_CFLAGS)
    31 endif
    32 
    33 mmyth_LDADD = 	\
    34 		$(LIBGMYTH_LIBS) \
    35 		$(GTK_LIBS) \
    36 		$(GLIB_LIBS) \
    37 		$(GST_LIBS) \
    38 		$(GSTBASE_LIBS) \
    39 		$(GSTPLUGINSBASE_LIBS) \
    40 		$(GSTINTERFACES_LIBS)
    41 
    42 if MAEMO_PLATFORM
    43 mmyth_LDADD += 	\
    44 	$(HILDON_LIBS)
    45 endif
    46