source: FTPfs/curlftpfs-0.9.1/Makefile.am @ 10

Last change on this file since 10 was 10, checked in by zsjheng, 16 years ago
File size: 550 bytes
Line 
1## Process this file with automake to produce Makefile.in
2SUBDIRS = compat doc
3
4DIST_SUBDIRS = $(SUBDIRS) tests
5
6AM_CPPFLAGS = -DFUSE_USE_VERSION=25
7
8bin_PROGRAMS = curlftpfs
9
10curlftpfs_SOURCES = ftpfs.c
11if FUSE_OPT_COMPAT
12curlftpfs_LDADD = libcurlftpfs.a compat/libcompat.la
13else
14curlftpfs_LDADD = libcurlftpfs.a
15endif
16
17noinst_LIBRARIES = libcurlftpfs.a
18
19libcurlftpfs_a_SOURCES = cache.c cache.h \
20       ftpfs-ls.c ftpfs-ls.h \
21       charset_utils.c charset_utils.h \
22       path_utils.c path_utils.h ftpfs.h
23
24check: test
25
26test:
27  @(cd tests; $(MAKE) test)
Note: See TracBrowser for help on using the repository browser.