Makefile 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Makefile for linuxtv.org dvb-apps/lib/libucsi/atsc
  2. .PHONY: sub-error-atsc
  3. sub-error-atsc:
  4. $(error You can't use this makefile directly.)
  5. ifneq ($(lib_name),)
  6. objects += atsc/atsc_text.o \
  7. atsc/cvct_section.o \
  8. atsc/dccsct_section.o \
  9. atsc/dcct_section.o \
  10. atsc/eit_section.o \
  11. atsc/ett_section.o \
  12. atsc/mgt_section.o \
  13. atsc/rrt_section.o \
  14. atsc/stt_section.o \
  15. atsc/tvct_section.o \
  16. atsc/types.o
  17. sub-install += atsc
  18. else
  19. includes = ac3_descriptor.h \
  20. caption_service_descriptor.h \
  21. component_name_descriptor.h \
  22. content_advisory_descriptor.h \
  23. cvct_section.h \
  24. dcc_arriving_request_descriptor.h \
  25. dcc_departing_request_descriptor.h \
  26. dccsct_section.h \
  27. dcct_section.h \
  28. descriptor.h \
  29. eit_section.h \
  30. ett_section.h \
  31. extended_channel_name_descriptor.h \
  32. genre_descriptor.h \
  33. mgt_section.h \
  34. rc_descriptor.h \
  35. rrt_section.h \
  36. section.h \
  37. service_location_descriptor.h \
  38. stt_section.h \
  39. stuffing_descriptor.h \
  40. time_shifted_service_descriptor.h \
  41. tvct_section.h \
  42. types.h
  43. include ../../../Make.rules
  44. lib_name = libucsi/atsc
  45. endif