~ubuntu-branches/ubuntu/wily/xdg-utils/wily

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Package Import Robot
  • Author(s): Sean Davis
  • Date: 2015-09-13 12:39:10 UTC
  • mfrom: (13.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20150913123910-uba8c1sph2iwnqlr
Tags: 1.1.0~rc3+git20150907-1ubuntu1
* Merge from Debian unstable.  Remaining changes: (LP: #1495273)
  - debian/patches:
    * gnome-3.0.diff: Correctly open preferred browser with 
      gnome-open (LP: #670128)
    * lp779156-lubuntu.diff: Add open_lxde and run_sylpheed function
      for improved LXDE and sylpheed support (LP: #779156)
    * xdg-screensaver-restore-timeout.diff: restore previous X11 
      screensaver timeout when xdg-screensaver resume is used (LP: #1363540)
* New upstream release fixes the following bugs:
  - xdg-mime query filetype does not work on KDE 5 (LP: #1454833)
  - xdg-open doesn't properly detect Xfce/Xubuntu (LP: #1388922)
  - xserver-blanking patch in Ubuntu duplicates code (LP: #1330386)
  - Typo in manpage of 'xdg-icon-resource' (LP: #996304)
  - xdg-open (to gnome-open) fails to launch file:// URL with query string 
    (LP: #396162)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SUBDIRS = scripts tests
2
 
 
3
 
all:            $(SUBDIRS)
4
 
install:        $(SUBDIRS:%=%/__install__)
5
 
uninstall:      $(SUBDIRS:%=%/__uninstall__)
6
 
test:           dummy
7
 
        cd tests && $(MAKE) test
8
 
clean:          $(SUBDIRS:%=%/__clean__)
9
 
distclean:      clean $(SUBDIRS:%=%/__distclean__)
10
 
        rm -f config.* Makefile
11
 
        rm -rf autom4te.cache
12
 
 
13
 
release:        $(SUBDIRS:%=%/__release__) distclean
14
 
        rm -f *~
15
 
 
16
 
help:   
17
 
        @echo "Usage: make [install|uninstall|release]"
18
 
 
19
 
.PHONY: all install uninstall clean distclean dummy
20
 
dummy:
21
 
 
22
 
$(SUBDIRS): dummy
23
 
        @cd $@ && $(MAKE)
24
 
 
25
 
$(SUBDIRS:%=%/__uninstall__): dummy
26
 
        cd `dirname $@` && $(MAKE) uninstall
27
 
 
28
 
$(SUBDIRS:%=%/__install__): dummy
29
 
        cd `dirname $@` && $(MAKE) install
30
 
 
31
 
$(SUBDIRS:%=%/__clean__): dummy
32
 
        cd `dirname $@` && $(MAKE) clean
33
 
 
34
 
$(SUBDIRS:%=%/__release__): dummy
35
 
        cd `dirname $@` && $(MAKE) release
36
 
 
37
 
$(SUBDIRS:%=%/__distclean__): dummy
38
 
        cd `dirname $@` && $(MAKE) distclean
39