File: Makefile

package info (click to toggle)
pdfedit 0.4.5-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 15,220 kB
  • ctags: 17,436
  • sloc: cpp: 156,708; xml: 8,973; makefile: 1,003; sh: 704; ansic: 688; perl: 669; yacc: 589; python: 236; lisp: 51
file content (21 lines) | stat: -rw-r--r-- 522 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
VERSION=2.0

all: executable commit-patch.1

# Darcs loses the x bit. :-(
executable:
	chmod +x commit-patch

commit-patch.1: commit-patch
	pod2man -c "User Commands" $< > $@

commit-patch.html: commit-patch
	pod2html $< > $@

release: commit-patch-$(VERSION)

commit-patch-$(VERSION): commit-patch commit-patch-buffer.el commit-patch.1 Makefile README COPYING
	mkdir commit-patch-$(VERSION)
	cp -p $^ commit-patch-$(VERSION)
	tar czf commit-patch-$(VERSION).tar.gz commit-patch-$(VERSION)
	rm -rf commit-patch-$(VERSION)