File: rules

package info (click to toggle)
grabc 1.1-2
  • links: PTS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, squeeze, stretch, wheezy
  • size: 64 kB
  • ctags: 16
  • sloc: ansic: 224; makefile: 29
file content (20 lines) | stat: -rwxr-xr-x 259 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/make -f
# -*- makefile -*-

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

clean:
	dh $@

install: build
	dh $@


binary-arch: build install
	dh $@

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