File: Makefile

package info (click to toggle)
python3-defaults 3.1.3-12%2Bsqueeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 656 kB
  • ctags: 132
  • sloc: python: 1,616; makefile: 311; sh: 132; perl: 5
file content (16 lines) | stat: -rw-r--r-- 270 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/make -f

all: scripts test1

test%:
	(cd t$*; debuild -us -uc)

scripts:
	sh ./test_scripts.sh

clean:
	rm -f *\.dsc *\.tar\.gz *\.build *\.changes *\.deb
	(cd t1; ./debian/rules clean)
	@find . -name '*\.egg-info' -exec rm -rf "{}" \; || true

.PHONY: clean