File: rules

package info (click to toggle)
libcss-perl 1.08-1%2Bnmu3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 976 kB
  • sloc: perl: 13,816; makefile: 16
file content (24 lines) | stat: -rwxr-xr-x 341 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/make -f

build: build-stamp
build-stamp:
	perl $(CURDIR)/debian/rebuild-grammar.pl
	dh build
	touch $@

clean:
	dh $@

install: install-stamp
install-stamp: build-stamp
	dh install
	touch $@

binary-arch:

binary-indep: install
	dh $@

binary: binary-arch binary-indep

.PHONY: binary binary-arch binary-indep install clean build