started to do desktop application with settings
[livewp] / applet / src / Makefile.am
1 SOURCE_FILES = livewp-main.c \
2                livewp-home-widget.c livewp-home-widget.h \
3                livewp-astro.c livewp-astro.h \
4                livewp-rules.c livewp-rules.h \
5                livewp-settings.c livewp-settings.h livewp-common.h \
6                livewp-config.c livewp-config.h
7
8 bin_PROGRAMS = livewp
9 livewp_SOURCES = $(SOURCE_FILES)
10
11 livewp_CFLAGS = -Wall $(EXAMPLE_CFLAGS)
12
13 livewp_LDADD = $(EXAMPLE_LIBS)
14
15 # We invent desktoplib_LTLIBRARIES instead of the normal lib_LTLIBRARIES,
16 # so we can specify the non-standard installation directory.
17 desktoplib_LTLIBRARIES =  liblivewp-home-widget.la
18 desktoplibdir = $(HILDON_DESKTOP_LIB_DIR)
19
20 liblivewp_home_widget_la_SOURCES = livewp-main.c \
21                                    livewp-home-widget.c livewp-home-widget.h \
22                                    livewp-astro.c livewp-astro.h \
23                                    livewp-rules.c livewp-rules.h \
24                                    livewp-settings.c livewp-settings.h livewp-common.h \
25                                    livewp-config.c livewp-config.h
26 liblivewp_home_widget_la_LIBADD = $(EXAMPLE_LIBS) 
27
28 AM_CFLAGS = -Wall $(EXAMPLE_CFLAGS) 
29