Commit be19e5e4 authored by Daniel Kamil Kozar's avatar Daniel Kamil Kozar

create separate directories for descriptor headers when installing

parent 07d78be6
...@@ -20,7 +20,11 @@ pkginclude_HEADERS = dvbpsi.h psi.h descriptor.h demux.h \ ...@@ -20,7 +20,11 @@ pkginclude_HEADERS = dvbpsi.h psi.h descriptor.h demux.h \
tables/atsc_vct.h tables/atsc_stt.h \ tables/atsc_vct.h tables/atsc_stt.h \
tables/atsc_eit.h tables/atsc_mgt.h \ tables/atsc_eit.h tables/atsc_mgt.h \
tables/atsc_ett.h \ tables/atsc_ett.h \
descriptors/mpeg/dr_02.h \ descriptors/dr.h
mpegdrincludedir = $(pkgincludedir)/mpeg
mpegdrinclude_HEADERS = descriptors/mpeg/dr_02.h \
descriptors/mpeg/dr_03.h \ descriptors/mpeg/dr_03.h \
descriptors/mpeg/dr_04.h \ descriptors/mpeg/dr_04.h \
descriptors/mpeg/dr_05.h \ descriptors/mpeg/dr_05.h \
...@@ -41,9 +45,12 @@ pkginclude_HEADERS = dvbpsi.h psi.h descriptor.h demux.h \ ...@@ -41,9 +45,12 @@ pkginclude_HEADERS = dvbpsi.h psi.h descriptor.h demux.h \
descriptors/mpeg/dr_14.h \ descriptors/mpeg/dr_14.h \
descriptors/mpeg/dr_1b.h \ descriptors/mpeg/dr_1b.h \
descriptors/mpeg/dr_1c.h \ descriptors/mpeg/dr_1c.h \
descriptors/mpeg/dr_24.h \ descriptors/mpeg/dr_24.h
descriptors/dvb/dr_40.h \
descriptors/dvb/dr_41.h \ dvbdrincludedir = $(pkgincludedir)/dvb
dvbdrinclude_HEADERS = descriptors/dvb/dr_40.h \
descriptors/dvb/dr_41.h \
descriptors/dvb/dr_42.h \ descriptors/dvb/dr_42.h \
descriptors/dvb/dr_43.h \ descriptors/dvb/dr_43.h \
descriptors/dvb/dr_44.h \ descriptors/dvb/dr_44.h \
...@@ -71,15 +78,23 @@ pkginclude_HEADERS = dvbpsi.h psi.h descriptor.h demux.h \ ...@@ -71,15 +78,23 @@ pkginclude_HEADERS = dvbpsi.h psi.h descriptor.h demux.h \
descriptors/dvb/dr_69.h \ descriptors/dvb/dr_69.h \
descriptors/dvb/dr_73.h \ descriptors/dvb/dr_73.h \
descriptors/dvb/dr_76.h \ descriptors/dvb/dr_76.h \
descriptors/dvb/dr_7c.h \ descriptors/dvb/dr_7c.h
descriptors/atsc/dr_81.h \
descriptors/atsc/dr_86.h \ atscdrincludedir = $(pkgincludedir)/atsc
descriptors/atsc/dr_a0.h \
descriptors/atsc/dr_a1.h \ atscdrinclude_HEADERS = descriptors/atsc/dr_81.h \
descriptors/custom/dr_83_eacem.h \ descriptors/atsc/dr_86.h \
descriptors/custom/dr_8a_scte.h \ descriptors/atsc/dr_a0.h \
descriptors/types/aac_profile.h \ descriptors/atsc/dr_a1.h
descriptors/dr.h
customdrincludedir = $(pkgincludedir)/custom
customdrinclude_HEADERS = descriptors/custom/dr_83_eacem.h \
descriptors/custom/dr_8a_scte.h
typesincludedir = $(pkgincludedir)/types
typesinclude_HEADERS = descriptors/types/aac_profile.h
descriptors_src = descriptors/mpeg/dr_02.c \ descriptors_src = descriptors/mpeg/dr_02.c \
descriptors/mpeg/dr_03.c \ descriptors/mpeg/dr_03.c \
...@@ -155,13 +170,3 @@ tables_src = tables/pat.c tables/pat_private.h \ ...@@ -155,13 +170,3 @@ tables_src = tables/pat.c tables/pat_private.h \
tables/atsc_eit.c tables/atsc_eit.h \ tables/atsc_eit.c tables/atsc_eit.h \
tables/atsc_ett.c tables/atsc_ett.h \ tables/atsc_ett.c tables/atsc_ett.h \
tables/atsc_mgt.c tables/atsc_mgt.h tables/atsc_mgt.c tables/atsc_mgt.h
install-data-local:
mkdir -p $(DESTDIR)$(pkgincludedir)/types
install-data-hook:
mv $(DESTDIR)$(pkgincludedir)/aac_profile.h $(DESTDIR)$(pkgincludedir)/types
uninstall-local:
rm -f $(DESTDIR)$(pkgincludedir)/types/aac_profile.h
rmdir $(DESTDIR)$(pkgincludedir)/types
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment