Makefile.in 1019 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. SHELL = @SHELL@
  2. top_srcdir = @top_srcdir@
  3. srcdir = @srcdir@
  4. VPATH = @srcdir@
  5. @SET_MAKE@
  6. #include $(top_srcdir)/build/build.mk
  7. .PHONY: default clean distclean normal debug general buildcheck notice notice_debug build units libelf libelf_notice
  8. default: normal
  9. clean:
  10. -+@cd bdlib && $(MAKE) clean
  11. -+@test -f libelf/Makefile && cd libelf && $(MAKE) clean
  12. @rm -f *.a
  13. distclean: clean
  14. -+@cd bdlib && $(MAKE) distclean
  15. -+@test -f libelf/Makefile && cd libelf && $(MAKE) distclean
  16. notice:
  17. @echo "[*] Making libraries"
  18. notice_debug:
  19. @echo "[*] Making libraries (debug)"
  20. normal: general notice build
  21. debug: general notice_debug build.debug
  22. general:
  23. libelf_notice:
  24. @echo "[*] Building libelf"
  25. $(top_srcdir)/lib/libelf/lib/libelf.a: libelf_notice
  26. +@cd libelf/lib && $(MAKE) libelf.a
  27. libelf: @LIBELF_BUNDLED@
  28. bdlib/libbdlib.a:
  29. +@cd bdlib && $(MAKE)
  30. build: bdlib/libbdlib.a
  31. +@$(MAKE) libelf
  32. build.debug: bdlib/libbdlib.a
  33. +@$(MAKE) libelf
  34. buildcheck: build
  35. units:
  36. # +@cd bdlib/tests && $(MAKE) units