blob: eb24cb35508e628940249626956163c59d9fbf00 (
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
|
# Process this file with automake to generate a GNU Makefile
########################################################################
# put file lists and special compile rules here
bin_SCRIPTS = gphoto2-config
EXTRA_DIST = HACKING MAINTAINERS makefile.os2 os2mak.inc TESTERS CHANGES
SUBDIRS = libgphoto2_port libgphoto2 camlibs tests po packaging doc
doc_DATA = AUTHORS COPYING README CHANGES NEWS
########################################################################
# The following default options for aclocal and automake
# are required in the top level Makefile.am for the automatic
# re-building of the build system files (only if configured with
# --enable-maintainer-mode).
#
# It is not sufficient to have these options somewhere in autogen.sh!
ACLOCAL_AMFLAGS = -I libgphoto2_port/m4
AUTOMAKE_OPTIONS = gnu
########################################################################
# The following rules are only interesting if you want to create
# distribution packages (as source tarballs or system specific packages)
if ENABLE_RPM
# create RPM packages
.PHONY: rpm
rpm: Makefile
$(MAKE) dist
$(MAKE) -C packaging/rpm rpm
@echo "The RPM packages should now be found in packaging/rpm/RPMS"
endif
if MAINTAINER_MODE
# add CVS tags - used only by the project maintainer to tag the files of a
# released version
.PHONY: cvs-tags
cvs-tags: Makefile
@echo cvs tag "@PACKAGE@-$$(echo '@VERSION@' | sed 's/\./_/g')"
endif
|