view libpurple/example/Makefile.am @ 17151:3e463ddf18f7

Periodically refresh the authentication info required to automatically log in to Hotmail. I spent far too long trying to figure out what was a suitable period for this only to find it was magic number 26. 26 is the smallest non-palindromic number whose square is palindromic (676) 26 is equal to the sum of the digits of its cube: 26^3 = 17,576 26, together with 11, cannot be represented as the sum of less than 6 hexagonal numbers from the sequence 1 6 15 28 45 ... Fixes #934
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 19 May 2007 01:00:35 +0000
parents ce049678a67b
children caeb452845ef 315151da0dc6
line wrap: on
line source

noinst_PROGRAMS = nullclient

nullclient_SOURCES = defines.h nullclient.c
nullclient_DEPENDENCIES =
nullclient_LDFLAGS = -export-dynamic
nullclient_LDADD = \
	$(DBUS_LIBS) \
	$(INTLLIBS) \
	$(GLIB_LIBS) \
	$(LIBXML_LIBS) \
	$(top_builddir)/libpurple/libpurple.la

AM_CPPFLAGS = \
	-DSTANDALONE \
	-DBR_PTHREADS=0 \
	-DDATADIR=\"$(datadir)\" \
	-DLIBDIR=\"$(libdir)/purple-$(PURPLE_MAJOR_VERSION)/\" \
	-DLOCALEDIR=\"$(datadir)/locale\" \
	-DSYSCONFDIR=\"$(sysconfdir)\" \
	-I$(top_srcdir)/libpurple/ \
	-I$(top_srcdir) \
	$(DEBUG_CFLAGS) \
	$(GLIB_CFLAGS) \
	$(DBUS_CFLAGS) \
	$(LIBXML_CFLAGS)