git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16065 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2009-12-28 19:19:19 +00:00
parent e8a4f39366
commit 74f2573ac9
1 changed files with 4 additions and 1 deletions

View File

@ -10,7 +10,10 @@ esl_wrap.cpp:
esl_wrap.o: esl_wrap.cpp
$(CXX) $(CXX_CFLAGS) $(LOCAL_CFLAGS) $(CXXFLAGS) $(GCC_WARNING_JUNK) $(PERL_INC) -c esl_wrap.cpp -o esl_wrap.o
esl.jar: esl_wrap.o
libesljni.so: esl_wrap.o
$(CXX) $(SOLINK) -o libesljni.so esl_wrap.o $(MYLIB)
esl.jar: libesljni.so
mkdir -p classes
javac -sourcepath org -d classes $(CLASSES)
jar cf esl.jar -C classes org