File: Makefile

package info (click to toggle)
git-reintegrate 0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 148 kB
  • ctags: 83
  • sloc: sh: 728; ruby: 550; makefile: 36
file content (23 lines) | stat: -rw-r--r-- 381 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
prefix := $(HOME)

all:

doc: doc/git-reintegrate.1

test:
	$(MAKE) -C test

doc/git-reintegrate.1: doc/git-reintegrate.txt
	a2x -d manpage -f manpage $<

D = $(DESTDIR)

install:
	install -D -m 755 git-reintegrate \
		$(D)$(prefix)/bin/git-reintegrate

install-doc: doc
	install -D -m 644 doc/git-reintegrate.1 \
		$(D)$(prefix)/share/man/man1/git-reintegrate.1

.PHONY: all test