chiark / gitweb /
Bump version to 7.0.1~iwj0
[chiark-utils.git] / settings.make
1 # Makefile
2 # common make settings
3 #
4 # This file is part of chiark-utils, a collection of useful utilities
5 #
6 # This file is:
7 #  Copyright (C) 1997-1998,2000-2001 Ian Jackson <ian@chiark.greenend.org.uk>
8 #
9 # This is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 3, or (at your option) any later version.
12 #
13 # This is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
16 # details.
17 #
18 # You should have received a copy of the GNU General Public License along
19 # with this program; if not, consult the Free Software Foundation's
20 # website at www.fsf.org, or the GNU Project website at www.gnu.org.
21
22 CONFIG_CPPFLAGS=        -DRWBUFFER_SIZE_MB=$(RWBUFFER_SIZE_MB) \
23                         -DREALLY_CHECK_FILE='"/etc/inittab"'
24
25 CC=             gcc
26 CFLAGS=         $(WARNINGS) $(OPTIMISE) $(DEBUG) $(CMDLINE_CFLAGS)
27 CPPFLAGS=       $(CONFIG_CPPFLAGS) $(CMDLINE_CPPFLAGS)
28 LDFLAGS=        $(CMDLINE_LDFLAGS)
29
30 WARNINGS=       -Wall -Wwrite-strings -Wmissing-prototypes \
31                 -Wstrict-prototypes -Wpointer-arith -Wno-pointer-sign
32 OPTIMISE=       -O2
33 DEBUG=          -g
34
35 SYSTEM_GROUP=   root
36
37 prefix=/usr/local
38 etcdir=/etc
39 varlib=/var/lib
40
41 confdir=$(etcdir)/$(us)
42 bindir=$(prefix)/bin
43 sbindir=$(prefix)/sbin
44 sharedir=$(prefix)/share/$(us)
45 perl5dir=$(prefix)/share/perl5
46 txtdocdir=$(prefix)/share/doc/$(us)
47 exampledir=$(txtdocdir)/examples
48 vardir=$(varlib)/$(us)
49 mandir=${prefix}/man
50 man1dir=${mandir}/man1
51 man8dir=${mandir}/man8
52
53 # INSTALL_PROGRAM_STRIP_OPT=-s
54
55 INSTALL=                install -c
56 INSTALL_SHARE=          $(INSTALL) -m 644 -o root -g $(SYSTEM_GROUP)
57 INSTALL_SCRIPT=         $(INSTALL) -m 755 -o root -g $(SYSTEM_GROUP)
58 INSTALL_PROGRAM=        $(INSTALL_SCRIPT) $(INSTALL_PROGRAM_STRIP_OPT)
59 INSTALL_DIRECTORY=      $(INSTALL) -m 2755 -o root -g $(SYSTEM_GROUP) -d