Modify sharing plugin template for CLI
[sharing-cli] / src / Makefile.am
1 #
2 # This file is part of sharing-plugin-cli
3 #
4 # Copyright (C) 2008-2009 Nokia Corporation. All rights reserved.
5 #
6 # This maemo code example is licensed under a MIT-style license,
7 # that can be found in the file called "COPYING" in the root
8 # directory.
9 #
10
11 plugins_LTLIBRARIES = libcli.la
12
13 libcli_la_SOURCES = plugin.c common.c send.c validate.c
14
15 libcli_la_CFLAGS = $(PACKAGE_CFLAGS) $(DEBUG_CFLAGS)
16 libcli_la_LDFLAGS = -module -avoid-version -export-dynamic
17 libcli_la_LIBADD = $(PACKAGE_LIBS)
18
19
20 MAINTAINERCLEANFILES = Makefile.in
21
22