chiark / gitweb /
*** empty log message ***
[sympathy.git] / src / Makefile.am
1 #
2 #
3 # Makefile.am:
4 #
5 # Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
6 # All rights reserved.
7 #
8 # $Id$
9 #
10 # $Log$
11 # Revision 1.11  2008/02/14 01:55:57  james
12 # *** empty log message ***
13 #
14 # Revision 1.10  2008/02/13 18:05:06  james
15 # *** empty log message ***
16 #
17 # Revision 1.9  2008/02/13 16:57:29  james
18 # *** empty log message ***
19 #
20 # Revision 1.8  2008/02/13 09:12:20  james
21 # *** empty log message ***
22 #
23 # Revision 1.7  2008/02/12 22:36:46  james
24 # *** empty log message ***
25 #
26 # Revision 1.6  2008/02/09 15:47:28  james
27 # *** empty log message ***
28 #
29 # Revision 1.5  2008/02/08 15:06:42  james
30 # *** empty log message ***
31 #
32 # Revision 1.4  2008/02/07 01:04:16  james
33 # *** empty log message ***
34 #
35 # Revision 1.3  2008/02/07 00:39:13  james
36 # *** empty log message ***
37 #
38 # Revision 1.2  2008/02/04 01:32:39  james
39 # *** empty log message ***
40 #
41 # Revision 1.1  2008/02/03 16:20:24  james
42 # *** empty log message ***
43 #
44 #
45 #
46 #
47
48 INCLUDES=
49
50 PROJECTHDRS= crt.h tty.h ansi.h vt102.h keys.h history.h ring.h slide.h log.h ipc.h symsocket.h term.h context.h  prototypes.h
51
52 HDRS=project.h 
53
54 SRCS=ansi.c crt.c html.c libsympathy.c render.c  version.c vt102.c tty.c term.c \
55         history.c ring.c ptty.c terminal.c util.c log.c ipc.c slide.c symsocket.c
56
57 CPROTO=cproto
58
59 SYMPATHYSRCS=${SRCS}
60
61 noinst_HEADERS= prototypes.h ${HDRS}
62
63
64 libsympathy_a_SOURCES =  ${SYMPATHYSRCS}
65 libsympathy_la_SOURCES = ${SYMPATHYSRCS}
66
67 libsympathy_a_CFLAGS = ${AM_CFLAGS}
68
69 BUILT_SOURCES = version.h sympathy.h
70
71 lib_LIBRARIES=libsympathy.a
72 lib_LTLIBRARIES=libsympathy.la
73
74 include_HEADERS=sympathy.h
75
76 AM_CFLAGS=-g -Werror
77
78 libsympathy_la_LDFLAGS = \
79         -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
80         -release $(LT_RELEASE) \
81         -export-dynamic 
82
83 VFD=${srcdir}/..
84 VF=${shell cat ${VFD}/version-files}
85 VFS=${VF:%=${VFD}/%}
86 VCHK=${shell cat ${VFS} | @MD5SUM@ | @AWK@ '{print $$1 }' }
87 VNUM=${shell @GREP@ ${VCHK} ${VFD}/version-md5sums | @AWK@ '{ print $$2 }'  }
88 VDEF=${shell echo `cat ${VFD}/version-major`.`cat ${VFD}/version-minor`.`cat ${VFD}/version-micro` }
89
90 protos:
91         echo > prototypes.h
92         ${CPROTO} -e -v ${INCLUDES} ${SRCS} > prototypes.tmp
93         mv -f prototypes.tmp prototypes.h
94
95 tidy: ${SRCS} ${HDRS}
96         indent -i2 -ts0 ${SRCS} ${HDRS} 
97
98 sympathy.h: ${PROJECTHDRS} sympathy.h.head sympathy.h.tail
99         cat sympathy.h.head ${PROJECTHDRS} sympathy.h.tail > $@ || /bin/rm -f $@
100
101 version.h: $(VFD)/version-files $(VFD)/version-major \
102         $(VFD)/version-minor $(VFD)/version-micro \
103         $(VFD)/version-md5sums ${VFS} Makefile
104         if [ .${VNUM} = . ]; then \
105                 echo "#define VERSION \"libsympathy Version ${VDEF} + Edits\"" > version.h; \
106                 echo ${VDEF}-E > version-num; \
107         else \
108                 echo "#define VERSION \"libsympathy Version ${VNUM}\"" > version.h; \
109                 echo ${VNUM} > version-num; \
110         fi
111