File: Makefile

package info (click to toggle)
postgresql-common 282
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,528 kB
  • sloc: perl: 4,170; sh: 1,572; makefile: 327; sql: 13; ansic: 10
file content (12 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
TAR = foo_123.orig.tar.gz

test: $(TAR)
	cd foo-123 && echo y | EDITOR=true dh_make_pgxs
	cd foo-123 && dpkg-buildpackage -us -uc

tar $(TAR):
	tar cfz $(TAR) foo-123/

clean:
	rm -f *.*
	rm -rf foo-123/build-* foo-123/debian foo-123/*.o*