Annotation of rpl/rplsums/Makefile.am, revision 1.2

1.1       bertrand    1: ldadd_libcrypto = $(top_builddir)/tools/@OPENSSL@/libcrypto.a
                      2: include_libcrypto = -I$(top_builddir)/tools/@OPENSSL@/include
                      3: 
                      4: SRCC=rplsum.c
                      5: 
1.2     ! bertrand    6: noinst_PROGRAMS = rplmd5sum rplsha1sum
        !             7: 
1.1       bertrand    8: rplmd5sum_SOURCES = rplsum.c
                      9: rplmd5sum_CFLAGS = -DEVP_sum=EVP_md5 -g -Wall -Wextra -Wno-pointer-sign
                     10: rplmd5sum_INCLUDES = $(include_libcrypto)
                     11: rplsha1sum_SOURCES = rplsum.c
                     12: rplsha1sum_CFLAGS = -DEVP_sum=EVP_sha1 -g -Wall -Wextra -Wno-pointer-sign
                     13: rplsha1sum_INCLUDES = $(include_libcrypto)
                     14: 
                     15: rplmd5sum_LDFLAGS = -g
                     16: rplmd5sum_LDADD = $(ldadd_libcrypto)
                     17: rplsha1sum_LDFLAGS = -g
                     18: rplsha1sum_LDADD = $(ldadd_libcrypto)
                     19: 
                     20: EXTRA_DIST = $(SRCC)

CVSweb interface <joel.bertrand@systella.fr>