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