~ubuntu-branches/ubuntu/lucid/u3-tool/lucid

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Evgeni Golov
  • Date: 2009-07-28 21:25:33 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090728212533-w9yk4jkllbb4mtpl
Tags: 0.2-1
* New upstream release.
  Closes: #538078
* debian/watch:
  + Add watch file as upstream has now released a stable version.
* debian/rules:
  + Use dh 7 tiny rules file.
  + But override dh_auto_install, the tool needs root privileges to
    work, so install in /usr/sbin.
* debian/control:
  + Add pkg-config Build-Dep.
  + Standards-Version: 3.8.2, no changes needed.
* debian/docs:
  + Remove commands.txt, it's not shipped by upstream anymore.
* debian/u3-tool.install:
  + Drop the file, upstream's build-system is fine.
* debian/u3-tool.links:
  + It's u3-tool-usb now that needs a manpage link.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
bin_PROGRAMS = u3-tool
 
2
 
 
3
shared_source = display_progress.c display_progress.h main.c md5.c md5.h \
 
4
        secure_input.c secure_input.h u3_commands.c u3_commands.h u3_error.c \
 
5
        u3_error.h u3.h u3_scsi.h 
 
6
 
 
7
u3_tool_SOURCES = $(shared_source) u3_scsi_sg.c sg_err.h
 
8
 
 
9
if HAVE_LIBUSB
 
10
bin_PROGRAMS += u3-tool-usb
 
11
 
 
12
u3_tool_usb_SOURCES = $(shared_source) u3_scsi_usb.c
 
13
u3_tool_usb_CFLAGS = $(LIBUSB_CFLAGS)
 
14
u3_tool_usb_LDADD = $(LIBUSB_LIBS)
 
15
endif