[go: up one dir, main page]

Menu

[1c1a23]: / Makefile.am  Maximize  Restore  History

Download this file

67 lines (43 with data), 1.3 kB

 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
## top directory
include $(top_srcdir)/Makefile.common
ACLOCAL_AMFLAGS = -I config
AUTOMAKE_OPTIONS = dist-bzip2
if INFO_DOC
INFO_DOC_DIR = info
endif
if HTML_DOC
HTML_DOC_DIR = doc
endif
if RUN_TESTS
TEST_DIR = test
endif
# Maintainance files
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure \
config-h.in sic/stamp-h.in autogen.sh bootstrap
#EXTRA_DIST = @PACKAGE@.spec @PACKAGE@.m4 @PACKAGE@.pc Makefile.common
EXTRA_DIST =
# Build in these directories:
SUBDIRS = rmol win32 po man $(INFO_DOC_DIR) $(HTML_DOC_DIR) samples $(TEST_DIR)
# Configuration helpers
bin_SCRIPTS = @PACKAGE@-config
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = @PACKAGE@.pc
m4datadir = $(datadir)/aclocal
m4data_DATA = @PACKAGE@.m4
# Targets
uninstall-local:
rm -rf $(DESTDIR)$(includedir)/@PACKAGE@
dist-html:
$(MAKE) -C doc dist-html
snapshot: snapshot-src snapshot-html
snapshot-src:
$(MAKE) dist distdir=@PACKAGE_TARNAME@-`date +"%Y%m%d"`
snapshot-html:
$(MAKE) -C doc dist-html html_tarname=@PACKAGE_TARNAME@-doc-`date +"%Y%m%d"`
upload: upload-src upload-html
upload-src: dist
@UPLOAD_COMMAND@ @PACKAGE_TARNAME@-@VERSION@.tar.gz \
@PACKAGE_TARNAME@-@VERSION@.tar.bz2
upload-html: dist-html
@UPLOAD_COMMAND@ @PACKAGE_TARNAME@-doc-@VERSION@.tar.gz \
@PACKAGE_TARNAME@-doc-@VERSION@.tar.bz2