~nux-team/nuxplayground/nuxplayground.removed-deprecated

« back to all changes in this revision

Viewing changes to src/kinetic-scrollview/Makefile.am

added Jay's new projects and nstring fixes to nuxplayground

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CLEANFILES =
 
2
DISTCLEANFILES =
 
3
EXTRA_DIST =
 
4
 
 
5
 
 
6
# This tells automake that we want to build binaries, but they shouldn't be
 
7
# installed. For each individual example, add it's binary name here
 
8
 
 
9
bin_PROGRAMS = kinetic-scrollview
 
10
 
 
11
 
 
12
# We only have to do this AM_ once to affect all the binaries we build from
 
13
# this Makefile
 
14
AM_CPPFLAGS = \
 
15
  -I$(srcdir) \
 
16
  -I$(top_srcdir) \
 
17
  -DPREFIX=\""$(prefix)"\" \
 
18
  -DLIBDIR=\""$(libdir)"\" \
 
19
  -DDATADIR=\""$(datadir)"\" \
 
20
  -DPKGDATADIR=\""$(pkgdatadir)/@NUX_SAMPLES_PACKAGE_VERSION@"\" \
 
21
  -DG_LOG_DOMAIN=\"NuxSamples\" \
 
22
  $(GCC_FLAGS) \
 
23
  $(NUX_SAMPLES_CFLAGS) \
 
24
  $(MAINTAINER_CFLAGS) \
 
25
  -I../common
 
26
 
 
27
 
 
28
# This is the individual executable build. For every $exe in noinst_PROGRAMS
 
29
# you need a $exe_SOURCES and $exe_LDADD so it builds
 
30
 
 
31
 
 
32
kinetic_scrollview_SOURCES = kinetic-scrollview.cpp TestButton.cpp
 
33
kinetic_scrollview_LDADD = $(NUX_SAMPLES_LIBS)