Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Utilidades/src/MakefilePrueba
diff options
context:
space:
mode:
Diffstat (limited to 'Utilidades/src/MakefilePrueba')
-rw-r--r--Utilidades/src/MakefilePrueba16
1 files changed, 0 insertions, 16 deletions
diff --git a/Utilidades/src/MakefilePrueba b/Utilidades/src/MakefilePrueba
deleted file mode 100644
index 80c8a70..0000000
--- a/Utilidades/src/MakefilePrueba
+++ /dev/null
@@ -1,16 +0,0 @@
-SWIG=/usr/bin/swig
-OUTDIR=../bin/python
-
-CFLAGS=-DRELEASE -fPIC -pipe -O0 -I/usr/include/python2.6
-
-all: PruebaModule.so
-
-Prueba.o Prueba_wrap.o: Prueba.i Prueba.cpp Prueba.h
- $(SWIG) -Wall -c++ -python Prueba.i
- g++ -c $(CFLAGS) Prueba.cpp Prueba_wrap.cxx
-
-PruebaModule.so: Prueba.o Prueba_wrap.o
- g++ -shared Prueba.o Prueba_wrap.o -lstdc++ -o _PruebaModule.so
-
-clean:
- rm Prueba.o Prueba_wrap.* _PruebaModule.so PruebaModule.py