aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 149b06441eb9de32531f39471dfbba4bdf32ac2b (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# This file is part of Smap. 
# Copyright (C) 2010 Sergey Poznyakoff
#
# Smap 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 3, or (at your option)
# any later version.
#
# Smap is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Smap.  If not, see <http://www.gnu.org/licenses/>.

sbin_PROGRAMS = smapd
bin_PROGRAMS = smapc

smapd_SOURCES = \
 cfg.c\
 close-fds.c\
 log.c\
 mem.c\
 module.c\
 smapd.c\
 srvman.c\
 userprivs.c\
 query.c

smapd_LDADD = ../lib/libsmap.la @TCPWRAP_LIBRARIES@ @LIBLTDL@

noinst_HEADERS = smapd.h srvman.h common.h

smapc_SOURCES = smapc.c mem.c
smapc_LDADD = ../lib/libsmap.la @READLINE_LIBS@

SUFFIXES=.opt .c

.opt.c:
	m4 -s $(top_srcdir)/src/getopt.m4 $< | sed '1d' > $@

BUILT_SOURCES=cmdline.c smapccmd.c smapd.conf
EXTRA_DIST=cmdline.opt cmdline.c smapccmd.opt smapccmd.c smapd.cfin getopt.m4
INCLUDES = -I$(top_srcdir)/include @LTDLINCL@
AM_CPPFLAGS=-DSYSCONFDIR=\"$(sysconfdir)\"\
 -DSMAP_MODDIR=\"$(SMAP_MODDIR)\"
CLEANFILES = smapd.conf

cmdline.c: cmdline.opt getopt.m4
smapccmd.c: smapccmd.opt getopt.m4

if MAILUTILS_COND
  DEF_MAILUTILS=-DMAILUTILS
endif
if GUILE_COND
  DEF_GUILE=-DGUILE
endif

.cfin.conf:
	$(AM_V_GEN)m4 $(DEF_MAILUTILS) $(DEF_GUILE) $< > $@

install-data-local:
	@test -z "$(sysconfdir)" || $(mkdir_p) "$(DESTDIR)$(sysconfdir)"
	@if [ -r $(DESTDIR)$(sysconfdir)/smapd.conf ]; then :; \
	else ${INSTALL} -m 644 $(top_builddir)/src/smapd.conf \
               $(DESTDIR)$(sysconfdir)/smapd.conf; fi

Return to:

Send suggestions and report system problems to the System administrator.