Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/pynslcd/Makefile.am
blob: 87c0a8d38856b0924a4f18e3f8e64d39f1442e25 (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
# Makefile.am - use automake to generate Makefile.in
#
# Copyright (C) 2010, 2011, 2012 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA

pynslcddir = $(datadir)/pynslcd

pynslcd_PYTHON = pynslcd.py attmap.py cache.py cfg.py common.py expr.py \
                 mypidfile.py tio.py \
                 alias.py ether.py group.py host.py netgroup.py network.py \
                 pam.py passwd.py protocol.py rpc.py service.py shadow.py
nodist_pynslcd_PYTHON = constants.py config.py
CLEANFILES = $(nodist_pynslcd_PYTHON)

all-local: $(nodist_pynslcd_PYTHON)

# clean up locally created compiled Python files
clean-local:
	rm -f *.pyc *.pyo

# create a symbolic link for the pynslcd daemon and fix permissions
install-data-hook:
	chmod a+rx $(DESTDIR)$(pynslcddir)/pynslcd.py
	$(MKDIR_P) $(DESTDIR)$(sbindir)
	[ -L $(DESTDIR)$(sbindir)/pynslcd ] || $(LN_S) $(pynslcddir)/pynslcd.py $(DESTDIR)$(sbindir)/pynslcd

# generate constants module
constants.py: $(top_srcdir)/nslcd.h Makefile
	( echo "# This file is automatically generated from nslcd.h." ; \
	  echo "# See that file for details." ; \
	  echo "" ; \
	  sed -n 's| */\*.*\*/ *||;s/^.define  *\(NSLCD_[A-Z_]*\)  */\1 = /p' \
	      $(top_srcdir)/nslcd.h ) > $@