File: Makefile.am

package info (click to toggle)
synapse 0.2.99.4-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,148 kB
  • sloc: sh: 4,721; makefile: 276; sed: 16
file content (37 lines) | stat: -rw-r--r-- 830 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
include $(top_srcdir)/Makefile.common

SUBDIRS = \
	src \
	vapi \
	data \
	po \
	$(NULL)

ACLOCAL_AMFLAGS = --install -I m4 ${ACLOCAL_FLAGS}

EXTRA_DIST = \
	Makefile.common \
	COPYING.GPL2 \
	COPYING.LGPL2.1 \
	$(NULL)

distclean-local:
	if test "x$(srcdir)" = "x."; then :; else \
		rm -f ChangeLog; \
	fi

ChangeLog:
	@echo Creating $@
	@if test -d "$(srcdir)/.bzr"; then \
		(bzr log --gnu -n1) | fmt --split-only --width=80 > $@.tmp \
		&& mv -f $@.tmp $@ \
		|| ($(RM) $@.tmp; \
			echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
			(test -f $@ || echo bzr is required to generate this file >> $@)); \
	else \
		test -f $@ || \
		(echo A bzr checkout and bzr is required to generate ChangeLog >&2 && \
		echo A bzr checkout and bzr is required to generate this file >> $@); \
	fi

.PHONY: ChangeLog