aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 89012e1d2487cc23633dde279e42000cdfb4f94b (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
# This file is part of NSsync 
# Copyright (C) 2011-2017 Sergey Poznyakoff
#
# NSsync 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.
#
# NSsync 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 NSsync.  If not, see <http://www.gnu.org/licenses/>.

sbin_PROGRAMS = nssync
nssync_SOURCES = \
 bindcf.c\
 config.c\
 iflist.c\
 nssync.c\
 nssync.h\
 output.c\
 runas.c\
 sqlop.c

if COND_MICROHTTPD
 nssync_SOURCES += server.c
 PTHREAD_L=-lpthread 
else
 nssync_SOURCES += noserver.c
 PTHREAD_L=
endif

LDADD=$(PTHREAD_L) @GRECS_LDADD@ ../runcap/libruncap.a

BUILT_SOURCES = cmdline.h
EXTRA_DIST = cmdline.h cmdline.opt

SUFFIXES=.opt .c .h

.opt.h:
	m4 -s $(top_srcdir)/grecs/build-aux/getopt.m4 $< | sed '1d' > $@

incdir=$(pkgdatadir)/$(VERSION)/include

AM_CPPFLAGS= \
  @GRECS_INCLUDES@\
 -I$(top_srcdir)/runcap\
 -DSYSCONFDIR=\"$(sysconfdir)\"\
 -DLOCALSTATEDIR=\"$(localstatedir)\"\
 -DDEFAULT_VERSION_INCLUDE_DIR=\"$(incdir)\"\
 -DDEFAULT_INCLUDE_DIR=\"$(pkgdatadir)/include\"\
 -DDEFAULT_PREPROCESSOR="$(DEFAULT_PREPROCESSOR)"

Return to:

Send suggestions and report system problems to the System administrator.