File: Makefile.am

package info (click to toggle)
libibtk 0.0.14-12.1
  • links: PTS
  • area: main
  • in suites: bullseye, buster
  • size: 1,796 kB
  • ctags: 603
  • sloc: sh: 11,464; cpp: 2,665; makefile: 157; ansic: 2
file content (50 lines) | stat: -rw-r--r-- 1,097 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
38
39
40
41
42
43
44
45
46
47
48
49
50
##
## Process this file with automake to produce Makefile.in
##

AUTOMAKE_OPTIONS = 1.3
ACLOCAL_AMFLAGS = -I m4

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
##
###############################################################################