blob: ffe154172bb006e4320369cb3930d46c7f8595c5 (
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 " clean - Clean debian-package files"
clean:
rm -rf ./debian/custodian
rm -f ./debian/custodian.debhelper.log
rm -f ./debian/custodian.substvars
rm -f ./debian/files
test:
t/test-suite
|