Makefile 609 B

12345678910111213141516171819202122232425262728293031323334
  1. # Makefile for linuxtv.org dvb-apps/lib/libucsi
  2. includes = crc32.h \
  3. descriptor.h \
  4. endianops.h \
  5. section.h \
  6. section_buf.h \
  7. transport_packet.h \
  8. types.h
  9. objects = crc32.o \
  10. section_buf.o \
  11. transport_packet.o
  12. lib_name = libucsi
  13. CPPFLAGS += -I../../lib
  14. .PHONY: all
  15. all: library
  16. include atsc/Makefile
  17. include dvb/Makefile
  18. include mpeg/Makefile
  19. .PHONY: $(sub-install)
  20. install:: $(sub-install)
  21. $(sub-install):
  22. $(MAKE) -C $@ install
  23. include ../../Make.rules