Makefile 449 B

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