summaryrefslogtreecommitdiff
path: root/ext/java/Makefile.in
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-12-30 02:59:53 +0000
committerSascha Schumann <sas@php.net>1999-12-30 02:59:53 +0000
commitf2f8d38efa3ccbaa05affaf8fcab24786ef452de (patch)
treec546807d61a77a191f89056212a4c40c63f0e83b /ext/java/Makefile.in
parent6bf3529919cf60389797a107cab16c826df3e68f (diff)
downloadphp-git-f2f8d38efa3ccbaa05affaf8fcab24786ef452de.tar.gz
Integration of -ng changes. Changes:
- added support for externally built modules, - improved support for in-tree shared modules, - fixed diversion bugs, - configure displays some informative messages, - faster static build (libtool isn't used anymore for compiling non-PIC objects), - dependencies comparable to automake's without requiring GNU make or GCC, - working make clean for non-GNU makes.
Diffstat (limited to 'ext/java/Makefile.in')
-rw-r--r--ext/java/Makefile.in27
1 files changed, 27 insertions, 0 deletions
diff --git a/ext/java/Makefile.in b/ext/java/Makefile.in
new file mode 100644
index 0000000000..9f8488e1b1
--- /dev/null
+++ b/ext/java/Makefile.in
@@ -0,0 +1,27 @@
+
+DEPTH = ../..
+topsrcdir = @topsrcdir@
+srcdir = @srcdir@
+VPATH = @srcdir@
+
+LTLIBRARY_NAME = libjava.la
+LTLIBRARY_SOURCES = java.c
+LTLIBRARY_LIBADD = $(JAVA_LFLAGS)
+
+EXTRA_CFLAGS = $(JAVA_CFLAGS)
+EXTRA_INCLUDES = $(JAVA_INCLUDE)
+
+include $(topsrcdir)/build/ltlib.mk
+
+phplib_DATA=php_java.jar
+php_java.jar : reflect.java
+ @test -e net || mkdir net
+ @test -e net/php || mkdir net/php
+ @cp reflect.java net/php
+ @echo library=php4>net/php/reflect.properties
+ javac net/php/reflect.java
+ @test ! -f reflect.class || mv reflect.class net/php # bug in KJC javac
+ zip -q0 php_java.jar net/php/*.class net/php/*.properties
+ @rm net/php/reflect.*
+ @rmdir net/php
+ @rmdir net