~ubuntu-branches/ubuntu/hardy/swig1.3/hardy

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-12-05 01:16:04 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051205011604-ygx904it6413k3go
Tags: 1.3.27-1ubuntu1
Resynchronise with Debian again, for the new subversion packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#######################################################################
2
 
# $Header: /cvsroot/swig/SWIG/Makefile.in,v 1.88 2004/10/11 08:09:24 marcelomatus Exp $
 
2
# $Header: /cvsroot/swig/SWIG/Makefile.in,v 1.91 2005/08/15 20:38:33 wsfulton Exp $
3
3
#######################################################################
4
4
 
5
5
prefix      = @prefix@
41
41
skip-chicken    = test -n "@SKIP_CHICKEN@"
42
42
skip-csharp     = test -n "@SKIP_CSHARP@"
43
43
skip-modula3    = test -n "@SKIP_MODULA3@"
 
44
skip-lua        = test -n "@SKIP_LUA@"
44
45
 
45
46
#####################################################################
46
47
# CHECK
71
72
        @$(skip-chicken)  || ./$(TARGET) -chicken  -help
72
73
        @$(skip-csharp)   || ./$(TARGET) -csharp   -help
73
74
        @$(skip-modula3)  || ./$(TARGET) -modula3  -help
 
75
        @$(skip-lua)      || ./$(TARGET) -lua      -help
74
76
 
75
77
check-examples:                                 \
76
78
        check-tcl-examples                      \
85
87
        check-pike-examples                     \
86
88
        check-chicken-examples                  \
87
89
        check-csharp-examples                   \
88
 
        check-modula3-examples
 
90
        check-modula3-examples                  \
 
91
        check-lua-examples
89
92
 
90
93
check-%-examples:
91
94
        @passed=true;                                           \
119
122
        check-pike-test-suite                   \
120
123
        check-csharp-test-suite                 \
121
124
        check-modula3-test-suite                \
 
125
        check-lua-test-suite                    \
122
126
#       check-chicken-test-suite
123
127
 
124
128
check-%-test-suite:
150
154
        check-php4-gifplot                      \
151
155
        check-pike-gifplot                      \
152
156
        check-chicken-gifplot                   \
 
157
#       check-lua-gifplot                       \
153
158
#       check-csharp-gifplot                    \
154
159
#       check-modula3-gifplot
155
160
 
191
196
        all-pike-test-suite                     \
192
197
        all-csharp-test-suite                   \
193
198
        all-modula3-test-suite                  \
 
199
        all-lua-test-suite                      \
194
200
#       all-chicken-test-suite
195
201
 
196
202
all-%-test-suite:
214
220
        broken-pike-test-suite                  \
215
221
        broken-csharp-test-suite                \
216
222
        broken-modula3-test-suite               \
 
223
        broken-lua-test-suite                   \
217
224
#       broken-chicken-test-suite
218
225
 
219
226
broken-%-test-suite:
283
290
        noskip-php4-test-suite                  \
284
291
        noskip-pike-test-suite                  \
285
292
        noskip-csharp-test-suite                \
 
293
        noskip-lua-test-suite                   \
286
294
        noskip-chicken-test-suite
287
295
 
288
296
noskip-%-test-suite:
315
323
        @$(INSTALL_PROGRAM) $(TARGET) $(DESTDIR)$(BIN_DIR)/$(TARGET)
316
324
 
317
325
lib-languages = tcl perl5 python guile java mzscheme ruby php4 ocaml \
318
 
        pike chicken csharp modula3 allegrocl
 
326
        pike chicken csharp modula3 allegrocl clisp lua
319
327
 
320
328
lib-modules = std
321
329
 
332
340
            echo "Installing language specific files for $$lang"; \
333
341
            dst=$(DESTDIR)$(SWIG_LIB)/$$lang;                   \
334
342
            $(MKINSTDIRS) $$dst;                                \
335
 
             (doti="`cd $(srcdir)/Lib/$$lang && ls *.i 2>/dev/null`";   \
336
 
              dotswg="`cd $(srcdir)/Lib/$$lang && ls *.swg 2>/dev/null`"; \
 
343
             (doti="`cd $(srcdir)/Lib/$$lang && ls *.i 2>/dev/null`" || doti="";        \
 
344
              dotswg="`cd $(srcdir)/Lib/$$lang && ls *.swg 2>/dev/null`" || dotswg="";  \
337
345
              if [ -f $(srcdir)/Lib/$$lang/extra-install.list ]; then   \
338
346
                  extra="`sed '/^#/d' $(srcdir)/Lib/$$lang/extra-install.list`";        \
339
347
              fi;                                               \