annotate src/md5/Makefile.am @ 42:03817f849106
decided to release the next version as 0.2.22 (not as 0.3.0)
I'll keep the 0.2 branch as the stable version which gets only bugfixed.
Soon I'll split off a 0.3 branch for further (incompatible) development.
author |
meillo@marmaro.de |
date |
Thu, 13 May 2010 17:34:23 +0200 |
parents |
08114f7dcc23 |
children |
10da50168dab |
rev |
line source |
0
|
1 AM_CFLAGS=@CFLAGS@ @GLIB_CFLAGS@ -D_GNU_SOURCE
|
|
2
|
|
3 noinst_LIBRARIES=libmd5c.a
|
|
4 noinst_PROGRAMS=hmactest
|
|
5
|
|
6 hmactest_SOURCES=\
|
|
7 md5.h\
|
|
8 global.h\
|
|
9 md5c.c\
|
|
10 hmac_md5.h\
|
|
11 hmac_md5.c\
|
|
12 hmactest.c
|
|
13
|
|
14 libmd5c_a_SOURCES=\
|
|
15 md5.h\
|
|
16 global.h\
|
|
17 md5c.c\
|
|
18 hmac_md5.h\
|
|
19 hmac_md5.c |