~ubuntu-branches/ubuntu/natty/sawfish/natty

« back to all changes in this revision

Viewing changes to lisp/sawfish/gtk/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Luis Rodrigo Gallardo Cruz
  • Date: 2009-11-23 09:05:20 UTC
  • mfrom: (1.2.10 upstream) (3.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20091123090520-3u8sefrr4lmfsiem
Tags: 1:1.5.3-2
* Remove reference to sawMILL in 00debian.jl (Closes: #557250).
* Remove empty doc dirs and replace them with symlinks (Closes: #556991).
* Rename sawfish maintainer scripts with the binary package name.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
srcdir=@srcdir@
28
28
VPATH=@srcdir@:@top_srcdir@
29
29
 
30
 
REP_GTK_GNOME=@REP_GTK_GNOME@
31
 
REP_ENVIRON:=$(REP_ENVIRON) REP_LOAD_PATH=$(top_srcdir)/lisp
 
30
REP_ENVIRON:=$(REP_ENVIRON) REP_LOAD_PATH=$(top_srcdir)/lisp:$(top_builddir)/lisp
32
31
 
33
 
SRCS := color-preview.jl        \
34
 
        stock.jl                \
 
32
SRCS := stock.jl                \
35
33
        widget.jl               \
36
34
        widget-dialog.jl        \
37
35
        widget-test.jl
51
49
ALL_SRCS := $(SRCS) $(W_SRCS)
52
50
ALL_OBJS := $(OBJS) $(W_OBJS)
53
51
 
54
 
ifeq ($(REP_GTK_GNOME),yes)
55
 
STOCK_SRC := stock.jl.gnome
56
 
else
57
 
STOCK_SRC := stock.jl.gtk
58
 
endif
59
 
 
60
52
%.jlc : %.jl
61
53
        $(REP_ENVIRON) rep compiler -f compile-batch $<
62
54
 
63
55
all : $(ALL_SRCS) $(ALL_OBJS)
64
56
 
65
 
stock.jl : $(STOCK_SRC) ./Makefile
66
 
        cp $< $@
67
 
 
68
57
install : all installdirs
69
58
        set -e; for p in $(SRCS) $(OBJS); do \
70
59
          $(INSTALL_DATA) $$p $(DESTDIR)${lispdir}/sawfish/gtk; \
90
79
        rm -f widgets/*~ widgets/*.jlc
91
80
 
92
81
realclean distclean : clean
93
 
        rm -f Makefile stock.jl
 
82
        rm -f Makefile
94
83
 
95
84
.PHONY: all install uninstall clean realclean distclean