aboutsummaryrefslogtreecommitdiffstats
path: root/wrappers/swig/Makefile
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-10-09 18:11:14 +0000
committerlloyd <[email protected]>2009-10-09 18:11:14 +0000
commit621d5391649011aa63b5d3f706f6f2544a03fc21 (patch)
treeb3562b03fae45fb73f71cafbffcc00a60cfbce76 /wrappers/swig/Makefile
parenta62f8baf340cdb977fdab8f29cfa71340c07c0e9 (diff)
Drop the SWIG wrappers; never worked. Move the XS wrappers to src/wrap/perl-xs
Diffstat (limited to 'wrappers/swig/Makefile')
-rw-r--r--wrappers/swig/Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/wrappers/swig/Makefile b/wrappers/swig/Makefile
deleted file mode 100644
index ff55c793c..000000000
--- a/wrappers/swig/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-LANG=-python
-LANG_INC=/usr/include/python2.3
-
-CFLAGS=$(shell botan-config --cflags)
-LIBS=$(shell botan-config --libs)
-
-CXX = g++ -g
-SWIG = swig -Wall
-
-all: _botan.so
-
-_botan.so: base.o pipe.o filter.o botan_wrap.o
- $(CXX) -shared $^ $(LIBS) -o $@
-
-botan_wrap.cpp: botan.swg base.h
- $(SWIG) $(LANG) -c++ -o $@ $<
-
-botan_wrap.o: botan_wrap.cpp
- $(CXX) $(CFLAGS) -I$(LANG_INC) -c $^ -o $@
-
-base.o: base.cpp base.h
- $(CXX) $(CFLAGS) -c $< -o $@
-
-pipe.o: pipe.cpp base.h
- $(CXX) $(CFLAGS) -c $< -o $@
-
-filter.o: filter.cpp base.h
- $(CXX) $(CFLAGS) -c $< -o $@
-
-clean:
- rm -f *.o _botan.so botan.py botan.pyc
- rm -f *_wrap.o *_wrap.cpp