summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 1825b4a7460bd35f99b9ccadda64ad03cf08b6bc (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
##
## Process this file with automake to produce Makefile.in
##

AUTOMAKE_OPTIONS = 1.3

SUBDIRS = docs m4 src

EXTRA_DIST = AUTHORS COPYING ChangeLog FreeBSD-HOWTO NetBSD-HOWTO \
		INSTALL INSTALL.french NEWS README README.french \
		autogen.sh ibtk.spec.header ibtk.spec.in SlackBuild.in


###

spec:
	@echo "Create new ibtk.spec.in."; \
	cat ibtk.spec.header > ibtk.spec.in; \
	echo "* `date +"%a %b %d %Y"` `id -un`" >> ibtk.spec.in; \
	cat ChangeLog >> ibtk.spec.in


mostlyclean-generic:
	-rm -f *~ \#* .*~ .\#* $(PACKAGE).tgz \
	package_descriptions $(PACKAGE)-$(VERSION).tar.gz



maintainer-clean-generic:
	-@echo "This command is intended for maintainers to use;"
	-@echo "it deletes files that may require special tools to rebuild."
	-rm -f Makefile.in


dist-rpm: dist
	@echo "Preparing source tarball to build a rpm packages..."; \
	mv -f @TAR_NAME@.tar.gz ../../SOURCES; \
	rpm -bb ibtk.spec; \
	echo "done"


dist-slack: all install
	@./SlackBuild


##
## End of Makefile.am
##
###############################################################################