source: FTPfs/sshfs-fuse-1.9/Makefile.am @ 10

Last change on this file since 10 was 10, checked in by zsjheng, 16 years ago
File size: 767 bytes
Line 
1## Process this file with automake to produce Makefile.in
2
3bin_PROGRAMS = sshfs
4
5sshfs_SOURCES = sshfs.c cache.c cache.h
6if FUSE_OPT_COMPAT
7sshfs_SOURCES += compat/fuse_opt.c compat/fuse_opt.h
8endif
9
10sshfs_LDADD = $(SSHFS_LIBS)
11sshfs_CFLAGS = $(SSHFS_CFLAGS)
12sshfs_CPPFLAGS = -D_REENTRANT -DFUSE_USE_VERSION=26 -DLIBDIR=\"$(libdir)\"
13
14EXTRA_DIST = sshnodelay.c FAQ.txt
15CLEANFILES = sshnodelay.so
16
17if SSH_NODELAY_SO
18all-local: sshnodelay.so
19
20install-exec-local: sshnodelay.so
21  test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
22  $(INSTALL) -m 755 sshnodelay.so "$(DESTDIR)$(libdir)/sshnodelay.so"
23
24uninstall-local:
25  rm -f "$(DESTDIR)$(libdir)/sshnodelay.so"
26
27sshnodelay.so:
28  $(CC) -Wall -W -s --shared -fPIC $(sshnodelay_libs) sshnodelay.c -o sshnodelay.so
29endif
Note: See TracBrowser for help on using the repository browser.