chiark / gitweb /
www-cgi/: Centralize environment variable filtering.
[userv-utils.git] / settings.make
1 # common makefile settings for userv-utils
2
3 # Copyright (C) 1999-2000,2003 Ian Jackson
4 #
5 # This is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with userv-utils; if not, write to the Free Software
17 # Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 #
19 # $Id$
20
21 etcdir=         /etc
22 prefix=         /usr/local
23 bindir=         $(prefix)/bin
24 sbindir=        $(prefix)/sbin
25 vardir=         /var
26
27 libdir=         $(prefix)/lib
28 sharedir=       $(prefix)/share
29
30 docdir=         $(sharedir)/doc
31
32 libuserv=       $(libdir)/userv
33 shareuserv=     $(sharedir)/userv
34 varlog=         $(vardir)/log
35 varlib=         $(vardir)/lib
36 varlibuserv=    $(varlib)/userv
37
38 etcuserv=       $(etcdir)/userv
39 services=       $(etcuserv)/services.d
40
41 CFLAGS= -Wall -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes \
42         -Wpointer-arith -D_GNU_SOURCE -Wno-pointer-sign \
43         $(OPTIMISE) $(DEBUG) $(SUBDIR_CFLAGS)
44 LDFLAGS= $(SUBDIR_LDFLAGS) $(DEBUG)
45
46 OPTIMISE=       -O2
47 DEBUG=          -g
48