~gearman-developers/gearman-interface/gearman-interface

« back to all changes in this revision

Viewing changes to xml/Makefile.am

  • Committer: Monty Taylor
  • Date: 2009-07-21 20:41:39 UTC
  • Revision ID: mordred@inaugust.com-20090721204139-rcyse999id1lbu1h
Python worker initial import.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
EXTRA_LTLIBRARIES= libswig.la
 
2
libswig_la_SOURCES= libdrizzle.i
 
3
 
 
4
CLEANFILES= libdrizzle.xml
 
5
 
 
6
all: libdrizzle.xml
 
7
 
 
8
SWIG_OPTS=-xml
 
9
 
 
10
 
 
11
SUFFIXES = .xml .i
 
12
.i.xml:
 
13
        $(SWIG) $(SWIG_OPTS) -MD -MF ${DEPDIR}/$*.Tpo -o $@ $<
 
14
        @mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
 
15
 
 
16
libdrizzle.xml: libdrizzle.i
 
17
 
 
18
distclean-local:
 
19
        rm -rf drizzle
 
20
 
 
21