aboutsummaryrefslogtreecommitdiffstats
path: root/lib/libucsi/Makefile
blob: 19ab2689c968811dd95e50762257d6752b723bc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 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 */
# Makefile for linuxtv.org dvb-apps/lib/libucsi

includes = crc32.h            \
           descriptor.h       \
           endianops.h        \
           section.h          \
           section_buf.h      \
           transport_packet.h \
           types.h

objects  = crc32.o            \
           section_buf.o      \
           transport_packet.o

lib_name = libucsi

CPPFLAGS += -I../../lib

.PHONY: all

all: library

include atsc/Makefile
include dvb/Makefile
include mpeg/Makefile

.PHONY: $(sub-install)

install:: $(sub-install)

$(sub-install):
	$(MAKE) -C $@ install

include ../../Make.rules