File: Makefile

package info (click to toggle)
par 1.51-1
  • links: PTS
  • area: main
  • in suites: sarge, woody
  • size: 236 kB
  • ctags: 114
  • sloc: ansic: 1,468; makefile: 55
file content (15 lines) | stat: -rw-r--r-- 382 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /usr/bin/make

BIN=$(DESTDIR)/usr/bin
DOC=$(DESTDIR)/usr/share/doc/par
MAN=$(DESTDIR)/usr/share/man/man1

include protoMakefile

install: par par.doc
	install -o root -g root -m 0755 par $(BIN)/par
	install -d $(DOC) -o root -g root -m 0755
	install -o root -g root -m 0644 par.doc $(DOC)
	install -d $(MAN) -o root -g root -m 0755
	install -o root -g root -m 0644 par.1 $(MAN)