File: Makefile

package info (click to toggle)
curator 1.3-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 252 kB
  • ctags: 4
  • sloc: python: 2,946; makefile: 57
file content (36 lines) | stat: -rw-r--r-- 783 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
24
25
26
27
28
29
30
31
32
33
34
35
36
#
# Makefile for curator
#
# This doesn't need anything except installation tasks as the package
# currently consists of only a python script and manpage.
#
# We may later include some themes within the same package, at which
# time we'll add to the Makefile to handle it.
#
#
# Makefile created on 2001-12-31 by Dave Baker <dsb3@debian.org> as part
# of the Debian packaging.
#

# DESTDIR allows package building in non-root location 
DESTDIR=	/
prefix=		${DESTDIR}/usr
install=	/usr/bin/install -c


all: curator


clean:
	rm -f *~ curator.1

install:	install-man
	$(install) -d ${prefix}/bin
	$(install) -m 755 curator ${prefix}/bin

install-man:
	$(install) -d ${prefix}/share/man/man1
	$(install) -m 644 curator.1 ${prefix}/share/man/man1