summaryrefslogtreecommitdiffstats
path: root/debian/debquilt.mk
blob: 878558d19aaef3ba1adc3225a8d478f51299c1c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/make -f

# Common rules to handle a debian package using the quilt patch utility
patch:
	[ -L patches ] || ln -s debian/patches patches
	quilt push -a

unpatch:
	if [ -L patches ] ; then \
	  quilt pop -a; \
	  rm patches; \
	fi
	rm -rf .pc