Makefile 577 B

1234567891011121314151617181920212223242526
  1. # Makefile for linuxtv.org dvb-apps/lib/libesg/representation
  2. .PHONY: sub-error-representation
  3. sub-error-representation:
  4. $(error You can't use this makefile directly.)
  5. ifneq ($(lib_name),)
  6. objects += representation/encapsulated_textual_esg_xml_fragment.o \
  7. representation/init_message.o \
  8. representation/textual_decoder_init.o
  9. sub-install += representation
  10. else
  11. includes = encapsulated_textual_esg_xml_fragment.h \
  12. init_message.h \
  13. textual_decoder_init.h
  14. include ../../../Make.rules
  15. lib_name = libesg/representation
  16. endif