File: Makefile.am

package info (click to toggle)
dancer-ircd 1.0.36-8
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 3,204 kB
  • ctags: 2,703
  • sloc: ansic: 36,121; sh: 3,534; perl: 612; makefile: 307
file content (27 lines) | stat: -rw-r--r-- 746 bytes parent folder | download | duplicates (4)
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
## Process this file with automake to produce Makefile.in

include $(top_srcdir)/build-misc/common.mk

## We're not a GNU project, and don't quite meet GNU standards
AUTOMAKE_OPTIONS = foreign

DISTCHECK_CONFIGURE_FLAGS = --with-config=dist

## This one just recurses into the subdirectories

SUBDIRS = autoconf build-misc include src lib tools doc

EXTRA_DIST = ChangeLog README

ACLOCAL = @ACLOCAL@ -I autoconf

distclean-local:
	rm -rf debug-tree include/config.h.debug include/config.h

# Ensure the correct config.h is distributed
dist-hook:
	(cd $(distdir)/include && cmp config.h.dist config.h || cp config.h.dist config.h)

sign:
	gpg --detach-sign $(distdir).tar.gz
	md5sum $(distdir).tar.gz | gpg --clearsign > $(distdir).tar.gz.md5sum