~ubuntu-branches/ubuntu/lucid/sawfish/lucid-updates

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Christian Marillat
  • Date: 2005-02-23 16:16:46 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050223161646-4id6qyw4h9lkvb0v
Tags: 1:1.3+cvs20050222-1
* New cvs release.
* Add an emacs initialisation script to load sawfish.el (Closes: #295290)
* Updated sawfish.el to 1.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Makefile.in for sawmill version 4
2
2
# Copyright (C) 1998 John Harper <john@dcs.warwick.ac.uk>
3
 
# $Id: Makefile.in,v 1.29 2001/06/20 21:41:31 jsh Exp $
 
3
# $Id: Makefile.in,v 1.31 2003/04/03 02:24:42 jsh Exp $
4
4
#
5
5
# This file is part of sawmill.
6
6
#
36
36
 
37
37
# this depends on config.status so it's rebuilt if configure is re-run
38
38
build.h : build-info config.status
39
 
        $(SHELL) $< $(host_type) $(version) \
 
39
        $(SHELL) $< $(host_type) $(version)$(subversion) \
40
40
          '$(sawfishdir)' '$(lispdir)' '$(sawfishexecdir)' '$(localedir)'
41
41
 
42
42
install : all installdirs
46
46
        for f in ./DOC*; do \
47
47
          $(INSTALL_DATA) $$f $(DESTDIR)$(sawfishexecdir); \
48
48
        done
49
 
        if [ -d $(DESTDIR)$(GNOMEDIR)/share/gnome/wm-properties ]; then \
50
 
          rm -f $(DESTDIR)$(GNOMEDIR)/share/gnome/wm-properties/Sawmill.desktop; \
51
 
          $(INSTALL_DATA) $(srcdir)/Sawfish.desktop $(DESTDIR)$(GNOMEDIR)/share/gnome/wm-properties; \
52
 
        fi
 
49
        rm -f $(DESTDIR)$(GNOMEDIR)/share/gnome/wm-properties/Sawmill.desktop
 
50
        $(INSTALL_DATA) $(srcdir)/Sawfish.desktop \
 
51
          $(DESTDIR)$(GNOMEDIR)/share/gnome/wm-properties
53
52
        -for f in $(OLD_BINARIES); do \
54
53
          if [ -x $(DESTDIR)$(bindir)/$$f ]; then \
55
54
            rm -f $(DESTDIR)$(bindir)/$$f; \
59
58
 
60
59
installdirs : mkinstalldirs
61
60
        $(SHELL) $< $(DESTDIR)$(sawfishdir)/$(version) \
62
 
          $(DESTDIR)$(bindir) $(DESTDIR)$(sawfishexecdir)
 
61
          $(DESTDIR)$(bindir) $(DESTDIR)$(sawfishexecdir) \
 
62
          $(DESTDIR)$(GNOMEDIR)/share/gnome/wm-properties
63
63
 
64
64
uninstall :
65
65
        for dir in $(SUBDIRS); do \
80
80
        -for dir in $(SUBDIRS); do \
81
81
          [ -d $$dir ] && ( cd $$dir && $(MAKE) $@ ) || exit 1; \
82
82
        done
83
 
        rm -f *~ DOC* TAGS build.h
 
83
        rm -f *~ NEWS DOC* TAGS build.h
84
84
 
85
85
realclean :
86
86
        -for dir in $(SUBDIRS); do \
87
87
          [ -d $$dir ] && ( cd $$dir && $(MAKE) $@ ) || exit 1; \
88
88
        done
89
89
        rm -f config.cache config.h config.log config.status Makedefs Makefile
90
 
        rm -f *~ DOC* TAGS build.h sawfish.spec
 
90
        rm -f *~ TAGS build.h sawfish.spec
91
91
 
92
92
distclean : realclean
93
93