Makefile.am 598 B

12345678910111213141516171819202122232425262728293031
  1. ## Process this file with automake to produce Makefile.in
  2. SUBDIRS = compat doc
  3. DIST_SUBDIRS = $(SUBDIRS) tests
  4. LIBICONV = @LIBICONV@
  5. AM_CPPFLAGS = -DFUSE_USE_VERSION=31
  6. AM_LDFLAGS = $(LIBICONV)
  7. bin_PROGRAMS = curlftpfs
  8. curlftpfs_SOURCES = ftpfs.c
  9. if FUSE_OPT_COMPAT
  10. curlftpfs_LDADD = libcurlftpfs.a compat/libcompat.la
  11. else
  12. curlftpfs_LDADD = libcurlftpfs.a
  13. endif
  14. noinst_LIBRARIES = libcurlftpfs.a
  15. libcurlftpfs_a_SOURCES = cache.c cache.h \
  16. ftpfs-ls.c ftpfs-ls.h \
  17. charset_utils.c charset_utils.h \
  18. path_utils.c path_utils.h ftpfs.h
  19. check: test
  20. test:
  21. @(cd tests; $(MAKE) test)