summaryrefslogtreecommitdiff
path: root/jpl/PerlInterpreter/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'jpl/PerlInterpreter/Makefile')
-rw-r--r--jpl/PerlInterpreter/Makefile43
1 files changed, 0 insertions, 43 deletions
diff --git a/jpl/PerlInterpreter/Makefile b/jpl/PerlInterpreter/Makefile
deleted file mode 100644
index a615fe173d..0000000000
--- a/jpl/PerlInterpreter/Makefile
+++ /dev/null
@@ -1,43 +0,0 @@
-WHAT = PerlInterpreter
-JAVA_HOME = /usr/local/java
-JPL_HOME = /usr/local/jpl
-ARCHNAME = sun4-solaris
-PERLARCHDIR = /usr/local/lib/perl5/sun4-solaris/5.00404
-CC = gcc
-FLAGS = -fPIC -R /usr/local/lib/perl5/sun4-solaris/5.00404/CORE -G -L/usr/local/lib
-INCL = -I$(PERLARCHDIR)/CORE \
- -I$(JAVA_HOME)/include \
- -I$(JAVA_HOME)/include/solaris \
- -I$(JAVA_HOME)/include/genunix
-LIBS = -lc -lm -ldl
-
-.SUFFIXES: .java .class
-
-.java.class:
- javac $*.java
-
-.class.h:
- javah -jni $*
-
-all: PerlInterpreter.class libPerlInterpreter.so
-
-PerlInterpreter.class: PerlInterpreter.java
-
-PerlInterpreter.h: PerlInterpreter.class
-
-libPerlInterpreter.so: PerlInterpreter.c PerlInterpreter.h
- $(CC) $(FLAGS) $(INCL) PerlInterpreter.c \
- $(PERLARCHDIR)/auto/DynaLoader/DynaLoader.a \
- $(LIBS) \
- -o libPerlInterpreter.so
-
-test:
-
-install: all
- mkdir -p $(JPL_HOME)/lib/$(ARCHNAME)
- cp libPerlInterpreter.so $(JPL_HOME)/lib/$(ARCHNAME)
- cp $(WHAT).class $(JPL_HOME)/lib
-
-clean:
- rm -f libPerlInterpreter.so
- rm -f PerlInterpreter.class