File: Makefile

package info (click to toggle)
curator 2.1-9
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 212 kB
  • ctags: 98
  • sloc: python: 1,384; makefile: 50
file content (34 lines) | stat: -rw-r--r-- 745 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
22
23
24
25
26
27
28
29
30
31
32
33
34
#
# 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