File: rules

package info (click to toggle)
tclap 1.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 10,584 kB
  • sloc: cpp: 3,724; xml: 1,028; sh: 855; makefile: 308; javascript: 214; ansic: 43
file content (17 lines) | stat: -rwxr-xr-x 499 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/make -f 					
# 							-*- makefile -*-
# debian/rules file for the Debian/GNU Linux tclap package

%:
	dh $@

override_dh_installdocs:
	dh_installdocs
        # edd 10 Jun 2011 prune CVS directory
	find debian/ -name CVS -type d | xargs rm -rf
        # Remove example Makefiles for reproducible builds as they
        # embed the build path, SHELL and various paths to utilities
	find debian/ -name Makefile -type f | xargs rm -f

override_dh_auto_test:
	echo "Skipping checks for now"