| FLAC_FILES = $(shell find . -type d -not -path '*/\.git/*' -not -path '*\/.git' -not -path '.') | |
| 
 | |
| default: test build | |
| 
 | |
| build: | |
| 	go build -o SuddenImpactRecords main | |
| 
 | |
| test: | |
| 	for dir in ${FLAC_FILES}; do \ | |
| 		go test $$dir; \ | |
| 	done | |
| 
 |