blob: e8da5f5965bbc1d2e492dd545af75f89fc227841 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
default:
	@echo "Utility makefile - valid targets are"
	@echo ""
	@echo "  test - Run the test suite"
	@echo "  tidy - Clean debian-package files"
tidy:
	rm -rf ./debian/custodian
	rm -f ./debian/custodian.debhelper.log
	rm -f ./debian/custodian.substvars
	rm -f ./debian/files
test:
	t/test-suite
  
  |