~ubuntu-branches/ubuntu/quantal/usb-modeswitch/quantal

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Didier Raboud
  • Date: 2010-01-12 15:58:14 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100112155814-8ve516a5iirpx5sg
Tags: 1.0.7-1
* New 1.0.7 upstream version (Closes: #563527).
  - Update the manpage
  - Split source in binary and data packages.
* Patches:
  - 01_correct_broken_huawei_conf.patch
      Removed.
  + 03_build_system_to_policy.patch
      Refreshed.
  - 04_convert_umconf_to_unicode.patch
      Removed.
  + 05_move_wrappers_to_usr.patch
      Refreshed.
  - 06_disables_rules.patch
      Removed.
* Add a preinst to delete configuration files forgotten in previous releases
  - Also delete /etc/udev/rules.d/80-usb_modeswitch.rules.
  - Delete only the data files not included in the -data upload
* Update README.Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
PROG        = usb_modeswitch
2
 
VERS        = 1.0.4
 
2
VERS        = 1.0.7
3
3
STRIP       = strip
4
4
CC          = gcc
5
 
CFLAGS     += -l usb
 
5
CFLAGS     += -l usb -Wall
6
6
RM          = /bin/rm -f
7
7
OBJS        = usb_modeswitch.c
8
8
PREFIX      = $(DESTDIR)/usr
35
35
integrated_install:
36
36
        make -f Makefile.integrated install
37
37
 
 
38
integrated_uninstall:
 
39
        make -f Makefile.integrated uninstall
 
40