You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 439B

12345678910111213141516171819
  1. PROJECT_ROOT_DIR := $(CURDIR)
  2. SRC := $(shell git ls-files *.go */*.go)
  3. .PHONY: bin test test-go test-core submodule
  4. test: test-go test-core
  5. submodule:
  6. git submodule update --init
  7. editorconfig: $(SRC)
  8. go build ./cmd/editorconfig
  9. test-go:
  10. go test -v ./...
  11. test-core: editorconfig
  12. cd core-test; cmake ..
  13. cd core-test; ctest -E "(comments_after_section|octothorpe|unset_|_pre_0.9.0|max_|root_file_mixed_case)" --output-on-failure .