clock/Makefile.am
author Mikael Berthe <mikael@lilotux.net>
Sat, 13 Oct 2012 14:34:18 +0200
changeset 44 3f94f3522960
parent 6 c2ad0b151a5e
permissions -rw-r--r--
[killpresence] Add a command /probe to send a presence probe
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6
c2ad0b151a5e New module: clock
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     1
c2ad0b151a5e New module: clock
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     2
if INSTALL_MODULE_CLOCK
c2ad0b151a5e New module: clock
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     3
c2ad0b151a5e New module: clock
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     4
pkglib_LTLIBRARIES = libclock.la
c2ad0b151a5e New module: clock
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     5
libclock_la_SOURCES = clock.c
c2ad0b151a5e New module: clock
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     6
libclock_la_LDFLAGS = -module -avoid-version -shared
c2ad0b151a5e New module: clock
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     7
c2ad0b151a5e New module: clock
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     8
LDADD = $(GLIB_LIBS) $(MCABBER_LIBS)
c2ad0b151a5e New module: clock
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     9
AM_CPPFLAGS = -I$(top_srcdir) $(GLIB_CFLAGS) $(MCABBER_CFLAGS)
c2ad0b151a5e New module: clock
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    10
c2ad0b151a5e New module: clock
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    11
endif