masqmail-0.2

diff src/base64/Makefile.am @ 0:08114f7dcc23

this is masqmail-0.2.21 from oliver kurth
author meillo@marmaro.de
date Fri, 26 Sep 2008 17:05:23 +0200
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/base64/Makefile.am	Fri Sep 26 17:05:23 2008 +0200
     1.3 @@ -0,0 +1,21 @@
     1.4 +AM_CFLAGS=@CFLAGS@ @GLIB_CFLAGS@ -D_GNU_SOURCE
     1.5 +
     1.6 +noinst_LIBRARIES=libbase64.a
     1.7 +noinst_PROGRAMS=base64enc base64dec
     1.8 +
     1.9 +base64enc_SOURCES=\
    1.10 +	base64.h\
    1.11 +	base64enc.c\
    1.12 +	base64.c
    1.13 +
    1.14 +base64dec_SOURCES=\
    1.15 +	base64.h\
    1.16 +	base64dec.c\
    1.17 +	base64.c
    1.18 +
    1.19 +libbase64_a_SOURCES=\
    1.20 +	base64.h\
    1.21 +	base64.c
    1.22 +
    1.23 +base64enc_LDADD=@GLIB_LIBS@
    1.24 +base64dec_LDADD=@GLIB_LIBS@