~ubuntu-branches/ubuntu/saucy/x11-xserver-utils/saucy

« back to all changes in this revision

Viewing changes to xgamma/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2010-01-08 18:38:47 UTC
  • mfrom: (5.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20100108183847-wuunshkmhcyh7vzc
Tags: 7.5+1ubuntu1
* Merge from Debian.  Remaining Ubuntu changes:
  - Add 100_xrandr-output.patch: When using --scale or --transform, verify
    a valid output parameter is used; crashes otherwise.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
bin_PROGRAMS = xgamma
23
23
 
24
 
AM_CFLAGS = $(XGAMMA_CFLAGS)
 
24
AM_CFLAGS = $(CWARNFLAGS) $(XGAMMA_CFLAGS)
25
25
xgamma_LDADD = $(XGAMMA_LIBS)
26
26
 
27
27
xgamma_SOURCES =        \
43
43
.PHONY: ChangeLog
44
44
 
45
45
ChangeLog:
46
 
        (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2)
 
46
        $(CHANGELOG_CMD)
47
47
 
48
48
dist-hook: ChangeLog
49
49
 
70
70
SUFFIXES = .$(APP_MAN_SUFFIX) .man
71
71
 
72
72
.man.$(APP_MAN_SUFFIX):
73
 
        sed $(MAN_SUBSTS) < $< > $@
 
73
        $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@