File: Makefile

package info (click to toggle)
par 1.52-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 236 kB
  • ctags: 116
  • sloc: ansic: 1,483; makefile: 64
file content (17 lines) | stat: -rw-r--r-- 404 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /usr/bin/make

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

include protoMakefile

CC = cc $(CFLAGS) -c

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)