| Rev | Line | |
|---|
| [10] | 1 | ## Process this file with automake to produce Makefile.in |
|---|
| 2 | SUBDIRS = compat doc |
|---|
| 3 | |
|---|
| 4 | DIST_SUBDIRS = $(SUBDIRS) tests |
|---|
| 5 | |
|---|
| 6 | AM_CPPFLAGS = -DFUSE_USE_VERSION=25 |
|---|
| 7 | |
|---|
| 8 | bin_PROGRAMS = curlftpfs |
|---|
| 9 | |
|---|
| 10 | curlftpfs_SOURCES = ftpfs.c |
|---|
| 11 | if FUSE_OPT_COMPAT |
|---|
| 12 | curlftpfs_LDADD = libcurlftpfs.a compat/libcompat.la |
|---|
| 13 | else |
|---|
| 14 | curlftpfs_LDADD = libcurlftpfs.a |
|---|
| 15 | endif |
|---|
| 16 | |
|---|
| 17 | noinst_LIBRARIES = libcurlftpfs.a |
|---|
| 18 | |
|---|
| 19 | libcurlftpfs_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 | |
|---|
| 24 | check: test |
|---|
| 25 | |
|---|
| 26 | test: |
|---|
| 27 | @(cd tests; $(MAKE) test) |
|---|
Note: See
TracBrowser
for help on using the repository browser.