~ubuntu-branches/ubuntu/vivid/xauth/vivid

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2007-06-22 15:19:06 UTC
  • mto: (8.1.1 intrepid) (13.1.1 sid)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20070622151906-la5ik8myp67hlzec
Tags: upstream-1.0.2
ImportĀ upstreamĀ versionĀ 1.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@)
40
40
 
41
 
EXTRA_DIST = $(appman_PRE)
 
41
EXTRA_DIST = $(appman_PRE) ChangeLog
42
42
CLEANFILES = $(appman_DATA)
43
43
 
 
44
if LINT
 
45
ALL_LINT_FLAGS=$(LINT_FLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
 
46
                $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(xauth_CFLAGS)
 
47
 
 
48
lint:
 
49
        $(LINT) $(ALL_LINT_FLAGS) $(xauth_SOURCES) $(xauth_LDADD)
 
50
endif LINT
 
51
 
 
52
 
44
53
SED = sed
45
54
 
46
55
# Strings to replace in man pages
64
73
 
65
74
.man.$(APP_MAN_SUFFIX):
66
75
        sed $(MAN_SUBSTS) < $< > $@
 
76
 
 
77
MAINTAINERCLEANFILES=ChangeLog
 
78
 
 
79
.PHONY: ChangeLog
 
80
 
 
81
ChangeLog:
 
82
        (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)
 
83
 
 
84
dist-hook: ChangeLog