~ubuntu-branches/debian/squeeze/sshfs-fuse/squeeze

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Bartosz Fenski
  • Date: 2006-02-03 14:10:51 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060203141051-1z0xaw6rrw4iv0ee
Tags: 1.6-1
* New upstream release.
  - fixes problem with saving files from GNOME apps. (Closes: #338496)
  - adds workaround for overwriting files. (Closes: #318078, #353968)
* Does not suggests module that does not exist. (Closes: #334513)
  - added README.Debian file with explanation how to get such module.
* README file now explains usage correctly. (Closes: #341490)
* Fixes typo in manual page. (Closes: #323496)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## Process this file with automake to produce Makefile.in
2
2
 
3
3
bin_PROGRAMS = sshfs
4
 
sshfs_SOURCES = sshfs.c cache.c opts.c cache.h opts.h
5
 
sshfs_CPPFLAGS = -DFUSE_USE_VERSION=22
 
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
 
15
CLEANFILES = sshnodelay.so
 
16
 
 
17
all-local: sshnodelay.so
 
18
 
 
19
install-exec-local: sshnodelay.so
 
20
        test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
 
21
        $(INSTALL) -m 755 sshnodelay.so "$(DESTDIR)$(libdir)/sshnodelay.so"
 
22
 
 
23
uninstall-local:
 
24
        rm -f "$(DESTDIR)$(libdir)/sshnodelay.so"
 
25
 
 
26
sshnodelay.so:
 
27
        $(CC) -Wall -W -s --shared -fPIC $(sshnodelay_libs) sshnodelay.c -o sshnodelay.so