aboutsummaryrefslogtreecommitdiffstats
path: root/lib/libucsi/mpeg/Makefile
blob: 43bc91d27fbf7405017fd14ac78f299df70f4ed0 (plain)
1
2
3
4
5
6
7
8
9
10
pre { line-height: 125%; margin: 0; }
td.linenos pre { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; }
span.linenos { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; }
td.linenos pre.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; 
# Makefile for linuxtv.org dvb-apps/lib/libucsi/mpeg

.PHONY: sub-error-mpeg

sub-error-mpeg:
	$(error You can't use this makefile directly.)

ifneq ($(lib_name),)

objects += mpeg/cat_section.o      \
           mpeg/metadata_section.o \
           mpeg/odsmt_section.o    \
           mpeg/pat_section.o      \
           mpeg/pmt_section.o      \
           mpeg/tsdt_section.o

sub-install += mpeg

else

includes = audio_stream_descriptor.h                 \
           ca_descriptor.h                           \
           cat_section.h                             \
           content_labelling_descriptor.h            \
           copyright_descriptor.h                    \
           data_stream_alignment_descriptor.h        \
           datagram_section.h                        \
           descriptor.h                              \
           external_es_id_descriptor.h               \
           fmc_descriptor.h                          \
           fmxbuffer_size_descriptor.h               \
           hierarchy_descriptor.h                    \
           ibp_descriptor.h                          \
           iod_descriptor.h                          \
           iso_639_language_descriptor.h             \
           maximum_bitrate_descriptor.h              \
           metadata_descriptor.h                     \
           metadata_pointer_descriptor.h             \
           metadata_section.h                        \
           metadata_std_descriptor.h                 \
           mpeg4_audio_descriptor.h                  \
           mpeg4_video_descriptor.h                  \
           multiplex_buffer_descriptor.h             \
           multiplex_buffer_utilization_descriptor.h \
           muxcode_descriptor.h                      \
           odsmt_section.h                           \
           pat_section.h                             \
           pmt_section.h                             \
           private_data_indicator_descriptor.h       \
           registration_descriptor.h                 \
           section.h                                 \
           sl_descriptor.h                           \
           smoothing_buffer_descriptor.h             \
           std_descriptor.h                          \
           system_clock_descriptor.h                 \
           target_background_grid_descriptor.h       \
           tsdt_section.h                            \
           types.h                                   \
           video_stream_descriptor.h                 \
           video_window_descriptor.h

include ../../../Make.rules

lib_name = libucsi/mpeg

endif