forked from samzyy/DB-based-replicated-filesystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
31 lines (21 loc) · 786 Bytes
/
Makefile.am
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
# $Id: Makefile.am,v 1.4 2006/10/02 22:34:03 ludvigm Exp $
bin_PROGRAMS = mysqlfs
schema_DATA = schema.sql install.sql
schemadir = $(datadir)/$(distdir)
# because the source is not in a subdir, we cannot just put the tests in a SUBDIRS= :(
check-recursive : mysqlfs
EXTRA_DIST = $(schema_DATA) mysqlfs.spec
SUBDIRS = tests-autotest
mysqlfs_SOURCES = mysqlfs.c query.c pool.c log.c
noinst_HEADERS = mysqlfs.h query.h pool.h log.h
if DO_DOXYGEN
doc: Doxyfile pkg/doc-mainpage.c
$(DOXYGEN)
doc-website: doc
rsync -avP -e ssh htdocs/html chickenandporn,@PACKAGE_NAME@@frs.sourceforge.net:htdocs
endif
if DO_RPMBUILD
release = $(rpm --query --queryformat="%{RELEASE}\n" --specfile @[email protected] |head -1)
rpm: dist-bzip2 @[email protected]
$(RPMBUILD) -ta $(distdir).tar.bz2
endif