~ubuntu-branches/ubuntu/gutsy/amsn/gutsy

« back to all changes in this revision

Viewing changes to plugins/BWidget-1.7.0/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Theodore Karkoulis
  • Date: 2006-01-04 15:26:02 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060104152602-ipe1yg00rl3nlklv
Tags: 0.95-1
New Upstream Release (closes: #345052, #278575).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in --
2
 
#
3
 
#       This file is a Makefile for the BLE executable.
4
 
#
5
 
# Copyright (c) 1999-2000 Ajuba Solutions.
6
 
#
7
 
# See the file "license.terms" for information on usage and redistribution
8
 
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
9
 
#
10
 
# RCS: @(#) $Id: Makefile.in,v 1.1 2004/03/04 00:47:28 airadier Exp $
11
 
 
12
 
 
13
 
BWIDGET_SOURCES = \
14
 
        arrow.tcl \
15
 
        bitmap.tcl \
16
 
        button.tcl \
17
 
        buttonbox.tcl \
18
 
        color.tcl \
19
 
        combobox.tcl \
20
 
        dialog.tcl \
21
 
        dragsite.tcl \
22
 
        dropsite.tcl \
23
 
        dynhelp.tcl \
24
 
        entry.tcl \
25
 
        font.tcl \
26
 
        init.tcl \
27
 
        label.tcl \
28
 
        labelentry.tcl \
29
 
        labelframe.tcl \
30
 
        listbox.tcl \
31
 
        mainframe.tcl \
32
 
        messagedlg.tcl \
33
 
        notebook.tcl \
34
 
        pagesmgr.tcl \
35
 
        panedw.tcl \
36
 
        passwddlg.tcl \
37
 
        progressbar.tcl \
38
 
        progressdlg.tcl \
39
 
        scrollframe.tcl \
40
 
        scrollview.tcl \
41
 
        scrollw.tcl \
42
 
        separator.tcl \
43
 
        spinbox.tcl \
44
 
        titleframe.tcl \
45
 
        tree.tcl \
46
 
        utils.tcl \
47
 
        widget.tcl \
48
 
        xpm2image.tcl
49
 
 
50
 
PKGINDEX_TCL = \
51
 
        $(srcdir)/pkgIndex.tcl
52
 
 
53
 
#STARTUP_SCRIPT = src/bwidget.tcl
54
 
 
55
 
#========================================================================
56
 
# Executable name for creating a wrapped application
57
 
# We don't currently build a wrapped bwidgets.
58
 
#========================================================================
59
 
 
60
 
#BWIDGET        = bwidget$(EXEEXT)
61
 
 
62
 
#========================================================================
63
 
# Nothing of the variables below this line need to be changed.
64
 
#========================================================================
65
 
 
66
 
SHELL = @SHELL@
67
 
EXEEXT  = @EXEEXT@
68
 
 
69
 
DESTDIR =
70
 
 
71
 
srcdir = @srcdir@
72
 
top_srcdir = @top_srcdir@
73
 
prefix = @prefix@
74
 
exec_prefix = @exec_prefix@
75
 
bindir = @bindir@
76
 
 
77
 
libdir = @libdir@
78
 
pkglibdir = $(libdir)/@PACKAGE@@VERSION@
79
 
 
80
 
top_builddir = .
81
 
 
82
 
INSTALL = @INSTALL@
83
 
INSTALL_PROGRAM = @INSTALL_PROGRAM@
84
 
INSTALL_DATA = @INSTALL_DATA@
85
 
INSTALL_SCRIPT = @INSTALL_SCRIPT@
86
 
 
87
 
PACKAGE = @PACKAGE@
88
 
VERSION = @VERSION@
89
 
PROWRAP = @PROWRAP@
90
 
AUTOCONF = autoconf
91
 
CYGPATH=@CYGPATH@
92
 
CONFIGDIR = @CONFIGDIR@
93
 
mkinstalldirs = $(SHELL) $(CONFIGDIR)/mkinstalldirs
94
 
 
95
 
#========================================================================
96
 
# TEA TARGETS.  Please note that the "libraries:" target refers to platform
97
 
# independent files, and the "binaries:" target inclues executable programs and
98
 
# platform-dependent libraries.  Modify these targets so that they install
99
 
# the various pieces of your package.  The make and install rules
100
 
# for the BINARIES that you specified above have already been done.
101
 
#========================================================================
102
 
 
103
 
all: binaries libraries doc
104
 
 
105
 
binaries:
106
 
 
107
 
libraries:
108
 
 
109
 
doc:
110
 
 
111
 
install: all install-binaries install-libraries install-doc
112
 
 
113
 
test:
114
 
 
115
 
depend:
116
 
 
117
 
install-binaries:
118
 
 
119
 
install-libraries: installdirs
120
 
        @echo "Installing script files in $(DESTDIR)$(pkglibdir)"
121
 
        @for i in $(BWIDGET_SOURCES) ; do \
122
 
            $(INSTALL_SCRIPT) $(srcdir)/$$i $(DESTDIR)$(pkglibdir) ; \
123
 
        done;
124
 
        @echo "Installing language files in $(DESTDIR)$(pkglibdir)/lang"
125
 
        @for i in $(srcdir)/lang/*.rc ; do \
126
 
            $(INSTALL_SCRIPT) $$i $(DESTDIR)$(pkglibdir)/lang ; \
127
 
        done;
128
 
        @echo "Installing image files in $(DESTDIR)$(pkglibdir)/images"
129
 
        @for i in $(srcdir)/images/*.gif $(srcdir)/images/*.xbm ; do \
130
 
            $(INSTALL_SCRIPT) $$i $(DESTDIR)$(pkglibdir)/images ; \
131
 
        done;
132
 
        $(INSTALL_SCRIPT) $(PKGINDEX_TCL) $(DESTDIR)$(pkglibdir)
133
 
 
134
 
install-doc:
135
 
        @echo "Installing html documentation in $(DESTDIR)$(pkglibdir)/htmldoc"
136
 
        @for i in $(srcdir)/BWman/*.html ; do \
137
 
            $(INSTALL_SCRIPT) $$i $(DESTDIR)$(pkglibdir)/htmldoc ; \
138
 
        done;
139
 
 
140
 
installdirs:
141
 
        $(mkinstalldirs) $(DESTDIR)$(pkglibdir)
142
 
        $(mkinstalldirs) $(DESTDIR)$(pkglibdir)/lang
143
 
        $(mkinstalldirs) $(DESTDIR)$(pkglibdir)/images
144
 
        $(mkinstalldirs) $(DESTDIR)$(pkglibdir)/htmldoc
145
 
 
146
 
clean:  
147
 
        -test -z "$(BINARIES)" || rm -f $(BINARIES)
148
 
        -rm -f *.o core *.core
149
 
        -rm -f *.$(OBJEXT)
150
 
        -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
151
 
 
152
 
distclean: clean
153
 
        -rm -f *.tab.c
154
 
        -rm -f Makefile $(CONFIG_CLEAN_FILES)
155
 
        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
156
 
        -rm -f config.status
157
 
 
158
 
Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
159
 
        cd $(top_builddir) \
160
 
          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
161
 
 
162
 
#config.status: $(srcdir)/configure
163
 
#       $(SHELL) ./config.status --recheck
164
 
 
165
 
#$(srcdir)/configure: $(srcdir)/configure.in
166
 
#       cd $(srcdir) && $(AUTOCONF) -l $(srcdir)/../../../sampleextension
167
 
 
168
 
.PHONY: all binaries clean depend distclean doc install installdirs \
169
 
libraries test
170
 
 
171
 
# Tell versions [3.59,3.63) of GNU make to not export all variables.
172
 
# Otherwise a system limit (for SysV at least) may be exceeded.
173
 
.NOEXPORT: