Makefile 349 B

123456789101112131415161718192021222324
  1. BUILD=build/
  2. # Fix pdflatex search path
  3. TGT_DIR :=
  4. TGT_DOC :=
  5. # Default target is 'all'. The 'build' target is defined here so that all
  6. # sub rules.mk can add prerequisites to the 'build' target.
  7. all:
  8. build:
  9. d := tests/
  10. include base.mk
  11. include $(d)/rules.mk
  12. .PHONY: doc
  13. all: doc build
  14. clean:
  15. rm -rf $(CLEAN)
  16. $(TGT_DIR):
  17. mkdir -p $(TGT_DIR)