blob: 7900770254e6742e95102468eea78953ec905589 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Makefile for linuxtv.org dvb-apps/lib/libesg/transport
.PHONY: sub-error-transport
sub-error-transport:
$(error You can't use this makefile directly.)
ifneq ($(lib_name),)
objects += transport/session_partition_declaration.o
sub-install += transport
else
includes = session_partition_declaration.h
include ../../../Make.rules
lib_name = libesg/transport
endif
|