~ubuntu-branches/ubuntu/oneiric/libxss/oneiric

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Julien Cristau, Brice Goglin, Julien Cristau
  • Date: 2008-03-21 12:26:06 UTC
  • mfrom: (1.1.5 upstream) (2.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080321122606-uyew95ann2qy8jba
Tags: 1:1.1.3-1
[ Brice Goglin ]
* Add upstream URL to debian/copyright.
* Replace the obsolete ${Source-Version} with ${binary:Version}.

[ Julien Cristau ]
* New upstream release.
* Update debian/copyright from upstream's new COPYING file.
* Remove Branden from Uploaders with his permission, and add myself.
* Don't build-depend on packages with a -1 debian revision.
* Bump Standards-Version to 3.7.3.
* Drop the XS- prefix from Vcs-* control fields.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
libXss_la_LDFLAGS = -version-info 1:0:0 -no-undefined
10
10
 
11
 
 
 
11
if LINT
 
12
ALL_LINT_FLAGS=$(LINT_FLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
 
13
                $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS)
 
14
 
 
15
lint:
 
16
        $(LINT) $(ALL_LINT_FLAGS) $(libXss_la_SOURCES)
 
17
endif LINT
 
18
 
 
19
if MAKE_LINT_LIB
 
20
lintlibdir = $(libdir)
 
21
 
 
22
lintlib_DATA = $(LINTLIB)
 
23
 
 
24
$(LINTLIB): $(libXss_la_SOURCES)
 
25
        $(LINT) -y -oXss -x $(ALL_LINT_FLAGS) $(libXss_la_SOURCES)
 
26
endif MAKE_LINT_LIB