Makefile.in 680 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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
  8. default: normal
  9. clean:
  10. -+@cd bdlib && $(MAKE) clean
  11. @rm -f *.a
  12. distclean: clean
  13. -+@cd bdlib && $(MAKE) distclean
  14. notice:
  15. @echo "[*] Making libraries"
  16. notice_debug:
  17. @echo "[*] Making libraries (debug)"
  18. normal: general notice build
  19. debug: general notice_debug build.debug
  20. general:
  21. bdlib/libbdlib.a:
  22. +@cd bdlib && $(MAKE)
  23. build: bdlib/libbdlib.a
  24. build.debug: bdlib/libbdlib.a
  25. buildcheck: build
  26. units:
  27. # +@cd bdlib/tests && $(MAKE) units