~ubuntu-branches/ubuntu/saucy/libquvi/saucy-proposed

« back to all changes in this revision

Viewing changes to examples/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Alejandro Garrido Mota
  • Date: 2011-04-25 01:07:41 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110425010741-nalzd12y180qs082
Tags: 0.2.15-1
* New upstream release (Closes: #622253). 
* Update d/watch to sf.net
* Update homepage field to quvi.sourceforge.net (Closes: #615554) 
* d/rules: Add dh_auto_test before NO_INTERNET=1 in override_dh_auto_test 
* Update Standards-Version field to 3.9.2 
* Add symbol (d/libquvi0.symbols) file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
if ENABLE_EXAMPLES
3
3
noinst_PROGRAMS = simple
4
4
simple_SOURCES = simple.c
5
 
simple_CFLAGS = -I$(top_builddir)/include
6
 
simple_LDFLAGS = $(top_builddir)/lib/libquvi.la
 
5
simple_CPPFLAGS = -I$(top_builddir)/include $(AM_CPPFLAGS)
 
6
simple_CFLAGS = $(AM_CFLAGS)
 
7
simple_LDFLAGS = $(top_builddir)/lib/libquvi.la $(AM_LDFLAGS)
7
8
endif
8
9
 
9
10