[go: up one dir, main page]

Menu

[705540]: / rmol / Makefile.am  Maximize  Restore  History

Download this file

56 lines (35 with data), 1.1 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
## top directory
include $(top_srcdir)/Makefile.common
ACLOCAL_AMFLAGS = -I config
AUTOMAKE_OPTIONS = dist-bzip2
if HTML_DOC
HTML_DOC_DIR = doc
endif
if RUN_TESTS
TEST_DIR = test
endif
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure \
config-h.in sic/stamp-h.in autogen.sh bootstrap
# Build in these directories:
SUBDIRS = rmol win32 po $(HTML_DOC_DIR) $(TEST_DIR)
EXTRA_DIST = rmol.spec Makefile.common
# Configuration helpers
bin_SCRIPTS = @PACKAGE@-config
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = @PACKAGE@.pc
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@-html-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@-html-doc-@VERSION@.tar.gz \
@PACKAGE_TARNAME@-html-doc-@VERSION@.tar.bz2