]> git.draconx.ca Git - aspectbin.git/blob - examples/Makefile.am
Update .gitignore.
[aspectbin.git] / examples / Makefile.am
1 noinst_PROGRAMS = simplebuttons
2
3 AM_CPPFLAGS = -I$(top_srcdir)
4
5 simplebuttons_SOURCES = simplebuttons.c
6 simplebuttons_CFLAGS  = $(GTK_CFLAGS)
7 simplebuttons_LDFLAGS = $(GTK_LIBS)
8 simplebuttons_LDADD   = $(top_builddir)/libaspectbin.la
9
10 if BUILD_LIBGLADE
11 noinst_PROGRAMS     += glade_simple
12 glade_simple_SOURCES = glade_simple.c
13 glade_simple_CFLAGS  = $(GTK_CFLAGS) $(LIBGLADE_CFLAGS)
14 glade_simple_LDFLAGS = $(GTK_LIBS)   $(LIBGLADE_LIBS) -static
15 glade_simple_LDADD   = $(top_builddir)/libaspectbin.la
16 endif