File: Makefile.am

package info (click to toggle)
xcompmgr 1.1.5-1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 692 kB
  • ctags: 359
  • sloc: sh: 3,808; ansic: 3,805; makefile: 57
file content (21 lines) | stat: -rw-r--r-- 459 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
bin_PROGRAMS = xcompmgr
man_MANS = xcompmgr.1

xcompmgr_LDADD = @XCOMPMGR_LIBS@ -lm

INCLUDES = @XCOMPMGR_CFLAGS@

EXTRA_DIST = \
	autogen.sh \
	ChangeLog \
	${man_MANS}

MAINTAINERCLEANFILES=ChangeLog

.PHONY: ChangeLog

ChangeLog:
	(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)

dist-hook: ChangeLog