[pypy-commit] pypy reflex-support: add operatorsDict.so to makefile

wlav noreply at buildbot.pypy.org
Wed Jul 13 14:22:19 CEST 2011


Author: Wim Lavrijsen <WLavrijsen at lbl.gov>
Branch: reflex-support
Changeset: r45545:e60e23c56a31
Date: 2011-07-13 05:17 -0700
http://bitbucket.org/pypy/pypy/changeset/e60e23c56a31/

Log:	add operatorsDict.so to makefile

diff --git a/pypy/module/cppyy/test/Makefile b/pypy/module/cppyy/test/Makefile
--- a/pypy/module/cppyy/test/Makefile
+++ b/pypy/module/cppyy/test/Makefile
@@ -1,4 +1,4 @@
-all: example01Dict.so datatypesDict.so advancedcppDict.so stltypesDict.so
+all: example01Dict.so datatypesDict.so advancedcppDict.so stltypesDict.so operatorsDict.so
 
 ROOTSYS := ${ROOTSYS}
 
@@ -36,3 +36,8 @@
 stltypesDict.so: stltypes.cxx stltypes.h stltypes.xml
 	$(genreflex) stltypes.h --selection=stltypes.xml
 	g++ -o $@ stltypes_rflx.cpp stltypes.cxx -shared -lReflex $(cppflags) $(cppflags2)
+
+operatorsDict.so: operators.cxx operators.h
+	$(genreflex) operators.h
+	g++ -o $@ operators_rflx.cpp operators.cxx -shared -lReflex $(cppflags) $(cppflags2)
+


More information about the pypy-commit mailing list