Makefile 392 B

123456789101112131415161718192021222324252627
  1. # Makefile for linuxtv.org dvb-apps/lib/libesg
  2. includes = types.h
  3. objects = types.o
  4. lib_name = libesg
  5. CPPFLAGS += -I../../lib
  6. .PHONY: all
  7. all: library
  8. include bootstrap/Makefile
  9. include encapsulation/Makefile
  10. include representation/Makefile
  11. include transport/Makefile
  12. .PHONY: $(sub-install)
  13. install:: $(sub-install)
  14. $(sub-install):
  15. $(MAKE) -C $@ install
  16. include ../../Make.rules