File: common.mk

package info (click to toggle)
procmail-lib 1%3A2004.1216-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,108 kB
  • ctags: 487
  • sloc: perl: 213; makefile: 124; sh: 6
file content (30 lines) | stat: -rw-r--r-- 825 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
#	Copyright (C)  Jari Aalto
#	Keywords:      Makefile, procmail
#
#	This program is free software; you can redistribute it and/or
#	modify it under the terms of the GNU General Public License as
#	published by the Free Software Foundation; either version 2 of the
#	License, or (at your option) any later version
#
#	This is file is included by all Makefiles

PROJECT		= procmail-lib
DESTDIR		=
prefix		= /usr/local
exec_prefix	= $(prefix)
doc_prefix	= $(prefix)/doc
man_prefix	= $(prefix)/share
data_prefix	= $(prefix)/share

INSTALL		= install
INSTALL_BIN	= $(INSTALL) -m 755
INSTALL_DATA	= $(INSTALL) -m 644

BINDIR		= $(DESTDIR)$(exec_prefix)/bin
MANDIR		= $(DESTDIR)$(man_prefix)/man/man1
DATADIR		= $(DESTDIR)$(data_prefix)/$(PROJECT)

DOCDIR		= $(DESTDIR)$(doc_prefix)/$(PROJECT)
EXAMPLEDIR	= $(DOCDIR)

# End of file