Makefile 259 B

1234567891011121314
  1. include vendor/mk/base.mk
  2. include vendor/mk/shell.mk
  3. build:
  4. .PHONY: build
  5. test: test-shell ## Runs all tests
  6. .PHONY: test
  7. check: check-shell ## Checks all linting, styling, & other rules
  8. .PHONY: check
  9. clean: clean-shell ## Cleans up project
  10. .PHONY: clean