~diegosarmentero/nuxplayground/nux-view-html-typos

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
CLEANFILES =
DISTCLEANFILES =
EXTRA_DIST =


# This tells automake that we want to build binaries, but they shouldn't be
# installed. For each individual example, add it's binary name here

bin_PROGRAMS = grid-layout


# We only have to do this AM_ once to affect all the binaries we build from
# this Makefile
AM_CPPFLAGS = \
  -I$(srcdir) \
  -I$(top_srcdir) \
  -DPREFIX=\""$(prefix)"\" \
  -DLIBDIR=\""$(libdir)"\" \
  -DDATADIR=\""$(datadir)"\" \
  -DPKGDATADIR=\""$(pkgdatadir)/@NUX_SAMPLES_PACKAGE_VERSION@"\" \
  -DG_LOG_DOMAIN=\"NuxSamples\" \
  $(GCC_FLAGS) \
  $(NUX_SAMPLES_CFLAGS) \
  $(MAINTAINER_CFLAGS) \
  -I../common


# This is the individual executable build. For every $exe in noinst_PROGRAMS
# you need a $exe_SOURCES and $exe_LDADD so it builds


grid_layout_SOURCES = grid-layout.cpp
grid_layout_LDADD = $(NUX_SAMPLES_LIBS)