annotate libpurple/ciphers/Makefile.am @ 31665:1bdc5f464802

Moved rc4 to the ciphers sublibrary
author Gary Kramlich <grim@reaperworld.com>
date Mon, 14 Feb 2011 06:10:49 +0000
parents 521febcb717a
children 3af51303d45c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
31661
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
1 noinst_LTLIBRARIES=libpurple-ciphers.la
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
2
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
3 libpurple_ciphers_la_SOURCES=\
31663
04ead332691f Broke out the hmac cipher to it's own file. Removed already transitioned info in the fileheader of cipher.c
Gary Kramlich <grim@reaperworld.com>
parents: 31661
diff changeset
4 hmac.c \
31661
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
5 md4.c \
31664
521febcb717a Broke sha1 out
Gary Kramlich <grim@reaperworld.com>
parents: 31663
diff changeset
6 md5.c \
31665
1bdc5f464802 Moved rc4 to the ciphers sublibrary
Gary Kramlich <grim@reaperworld.com>
parents: 31664
diff changeset
7 rc4.c \
31664
521febcb717a Broke sha1 out
Gary Kramlich <grim@reaperworld.com>
parents: 31663
diff changeset
8 sha1.c
31661
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
9
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
10 INCLUDES = -I$(top_srcdir)/libpurple
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
11
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
12 AM_CPPFLAGS = \
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
13 $(GLIB_CFLAGS)
64587c6084e3 Created a new branch to break the ciphers out to their own files. Also I've now exposed purple_g_checksum_* if we're on glib >= 2.16.0
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
14