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.

12 lines
228 B

  1. FLAC_FILES = $(shell find . -type d -not -path '*/\.git/*' -not -path '*\/.git' -not -path '.')
  2. default: test build
  3. build:
  4. go build -o SuddenImpactRecords main
  5. test:
  6. for dir in ${FLAC_FILES}; do \
  7. go test $$dir; \
  8. done