php-src/ext/java/Makefile.in

29 lines
696 B
Makefile
Raw Normal View History

DEPTH = ../..
topsrcdir = @topsrcdir@
srcdir = @srcdir@
VPATH = @srcdir@
LTLIBRARY_SHARED_NAME = libphp_java.la
LTLIBRARY_SOURCES = java.c
LTLIBRARY_DEPENDENCIES = php_java.jar
EXTRA_CFLAGS = $(JAVA_CFLAGS)
EXTRA_INCLUDES = $(JAVA_INCLUDE)
make_shared = yes
include $(topsrcdir)/build/ltlib.mk
php_java.jar : reflect.java
@test -e net || mkdir net
@test -e net/php || mkdir net/php
@cp reflect.java net/php
@echo library=php_java>net/php/reflect.properties
javac net/php/reflect.java
@test ! -f reflect.class || mv reflect.class net/php # bug in KJC javac
$(JAVA_JAR) php_java.jar net/php/*.class net/php/*.properties
@rm net/php/reflect.*
@rmdir net/php
@rmdir net