From 94033fe5d9fc9d63d08d2fa9d0b12867459caf95 Mon Sep 17 00:00:00 2001 From: Romain Chantereay Date: Tue, 10 Aug 2004 11:18:17 +0000 Subject: - Added java binding swig generation. - Added Swig Interface file. - Added readme for java build dependencies - Removed old java/src directory (still present on the CVS and this is important). --- java/src/c/Makefile.am | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 java/src/c/Makefile.am (limited to 'java/src/c/Makefile.am') diff --git a/java/src/c/Makefile.am b/java/src/c/Makefile.am deleted file mode 100644 index c00bfe64..00000000 --- a/java/src/c/Makefile.am +++ /dev/null @@ -1,33 +0,0 @@ -if MINGW -JAVA_CFLAGS = -mno-cygwin -mwindows -D_MSC_VER=1 \ - -D_WIN32 -DWIN32 -DLASSO_DEBUG \ - -I$(top_srcdir) \ - -I. -g \ - -I/usr/local/include \ - -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include \ - -I/usr/local/include/libxml2 \ - -DXMLSEC_CRYPTO="openssl" -DXMLSEC_LIBXML_260=1 \ - -D__XMLSEC_FUNCTION__=__FUNCTION__ -DXMLSEC_NO_XKMS=1 \ - -DXMLSEC_NO_CRYPTO_DYNAMIC_LOADING=1 -DXMLSEC_CRYPTO_OPENSSL=1 -else -JAVA_CFLAGS = \ - -g \ - -I. -I/opt/jdk/include -I/opt/jdk/include/linux \ - -I$(top_srcdir) \ - -I/usr/include/libxml2 \ - -I/usr/include/glib-2.0 \ - -I/usr/lib/glib-2.0/include \ - -DXMLSEC_LIBXML_260=1 -D__XMLSEC_FUNCTION__=__FUNCTION__ -DXMLSEC_NO_XKMS=1 -DXMLSEC_NO_CRYPTO_DYNAMIC_LOADING=1 -I/usr/include/xmlsec1 -I/usr/include/libxml2 -DXMLSEC_CRYPTO_OPENSSL=1 -DXMLSEC_CRYPTO=\"openssl\" -endif -C_SOURCE = ${wildcard *.c} -C_OBJECT = ${C_SOURCE:.c=.o} - -.PHONY: clean all - -all: ${C_OBJECT} - -%.o: %.c %.h - ${CC} $(JAVA_CFLAGS) -c $< - -clean: - rm -f ${C_OBJECT} *~ -- cgit