aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.am
blob: 33275cd14d01ea493dfa92ccb098f19a82af7d1a (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
#
#
# Makefile.am:
#
# Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
# All rights reserved.
#
# $Id$
#
# $Log$
# Revision 1.3  2008/02/27 10:47:34  james
# *** empty log message ***
#
# Revision 1.2  2008/02/24 00:42:52  james
# *** empty log message ***
#
# Revision 1.1  2008/02/03 16:20:23  james
# *** empty log message ***
#
#
#
#
SUBDIRS=src apps test 

bin_SCRIPTS = libsympathy-config

libsympathy-config.src:libsympathy-config.src.in
libsympathy-config:libsympathy-config.src version.sed
	@SED@ -f version.sed < libsympathy-config.src > libsympathy-config || rm -f libsympathy-config
	chmod +x $@
	

VFD=${srcdir}
VF=${shell cat ${VFD}/version-files}
VFS=${VF:%=${VFD}/%}
VCHK=${shell cat ${VFS} | @MD5SUM@ | @AWK@ '{print $$1 }' }
VNUM=${shell @GREP@ ${VCHK} ${VFD}/version-md5sums | @AWK@ '{ print $$2 }'  }
VDEF=${shell echo `cat ${VFD}/version-major`.`cat ${VFD}/version-minor`.`cat ${VFD}/version-micro` }

EXTRA_DIST=version-files version-major version-minor version-micro version-md5sums

version.sed: $(VFD)/version-files $(VFD)/version-major \
	$(VFD)/version-minor $(VFD)/version-micro \
	$(VFD)/version-md5sums ${VFS} Makefile
	if [ .${VNUM} = . ]; then \
		echo "s/%VERSION%/${VDEF}-E/g" > version.sed; \
	else \
		echo "s/%VERSION%/${VNUM}/g" > version.sed; \
	fi

protos:
	(cd src && ${MAKE} protos)

tidy:
	cvs commit -m ""
	(cd src && ${MAKE} tidy)
	(cd apps && ${MAKE} tidy)