1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
#**************************************************************************
#* Makefile for libJavaReadline.so -- load library for JNI wrapper
#* of GNU readline
#*
#* Copyright (c) 1987-1998 Free Software Foundation, Inc.
#* Java Wrapper Copyright (c) 1998-2001 by Bernhard Bablok (mail@bablokb.de)
#*
#* This program is free software; you can redistribute it and/or modify
#* it under the terms of the GNU Library General Public License as published
#* by the Free Software Foundation; either version 2 of the License or
#* (at your option) any later version.
#*
#* This program is distributed in the hope that it will be useful, but
#* WITHOUT ANY WARRANTY; without even the implied warranty of
#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#* GNU Library General Public License for more details.
#*
#* You should have received a copy of the GNU Library General Public License
#* along with this program; see the file COPYING.LIB. If not, write to
#* the Free Software Foundation Inc., 59 Temple Place - Suite 330,
#* Boston, MA 02111-1307 USA
#***************************************************************************
#
# Toplevel Makefile for Java-Readline
#
# $Author: bablokb $
# $Revision: 1.18 $
#
TARGET = libreadline-java
README = README README.1st
NEWS = NEWS
CHANGELOG = ChangeLog
LICENSE = COPYING.LIB
TODO = TODO
NAME = The Java-Readline Library
HOMEPAGE = http://java-readline.sourceforge.net/
COPYRIGHT = Released under the LGPL, (c) Bernhard Bablok, Henner Zeller 1998-2002
WTITLE = "$(NAME)"
DTITLE = "$(NAME), Version $(VERSION)"
DBOTTOM = "$(COPYRIGHT)<br>Homepage: <a href="$(HOMEPAGE)">$(HOMEPAGE)</a>"
DHEADER = "<strong>$(NAME), Version $(VERSION)</strong>"
DFOOTER = "<strong>$(NAME), Version $(VERSION)</strong>"
BIN_ADD = $(README) $(NEWS) $(TODO) $(CHANGELOG) $(LICENSE) \
$(JAR) *.so $(APIDIR)
SRC_ADD = $(README) $(NEWS) $(TODO) $(CHANGELOG) $(LICENSE) \
Makefile VERSION $(SUBDIRS) contrib src etc
MF_STUB = etc/manifest.stub
# installation procedure
PREFIX = /usr
BINLIBDIR = $(PREFIX)/lib
DOCDIR = $(PREFIX)/doc
JAVALIBDIR= $(PREFIX)/share/java
# libraries to build
T_LIBS = JavaReadline
# Operating system dependent
JAVAINCLUDE = $(JAVA_HOME)/include
JAVANATINC = $(JAVA_HOME)/include/linux
ifeq (MSC,$(WIN32))
JAVA_HOME := c:/j2sdk1.4.0
JAVANATINC = $(JAVA_HOME)/include/win32
export PATH:=/cygdrive/$(subst :,,$(JAVA_HOME))/bin:/cygdrive/c/Programme/DevStudio/VC/bin:/cygdrive/c/Programme/DevStudio/SharedIDE/bin/:$(PATH)
T_LIBS = JavaGetline
ARGS = Getline
endif
## normal javac
JAVAC = javac
JC_FLAGS =
## with jikes
#JAVAC = jikes
#JC_FLAGS = -O +E
VERSION = `cat VERSION`
JAR = $(TARGET).jar
APIDIR = ./api
BUILDDIR = ./build
# we build the rpm relative to our build..
RPM_BASE = `pwd`/$(BUILDDIR)/
world : jar build-native
jar: build-java
cd $(BUILDDIR) ; $(JAVA_HOME)/bin/jar -cvf ../$(JAR) org
$(JAR):
cd $(BUILDDIR) ; $(JAVA_HOME)/bin/jar -cvf ../$(JAR) org
build-java: $(BUILDDIR)
cd src ; $(MAKE) JAVAC="$(JAVAC)" JC_FLAGS="$(JC_FLAGS)" java
build-native:
cd src; $(MAKE) T_LIBS="$(T_LIBS)" JAVAINCLUDE="$(JAVAINCLUDE)" \
JAVANATINC="$(JAVANATINC)" native
apidoc: $(APIDIR)
$(JAVA_HOME)/bin/javadoc -sourcepath src -d $(APIDIR) -windowtitle $(WTITLE) \
-doctitle $(DTITLE) -footer $(DFOOTER) -header $(DHEADER) \
-bottom $(DBOTTOM) -link /usr/share/doc/default-jdk-doc/api \
-version -author org.gnu.readline test
install: jar build-native apidoc
install -D $(JAR) $(DESTDIR)$(JAVALIBDIR)/$(JAR)
install -d $(DESTDIR)$(BINLIBDIR)
install *.so $(DESTDIR)$(BINLIBDIR)
install -d $(DESTDIR)$(DOCDIR)/$(TARGET)-$(VERSION)
cp -r api $(DESTDIR)$(DOCDIR)/$(TARGET)-$(VERSION)
bin-dist: jar build-native apidoc
mkdir -p "$(TARGET)-$(VERSION)"
-cp -r $(BIN_ADD) "$(TARGET)-$(VERSION)"
tar -czf $(TARGET)-$(VERSION)-bin.tar.gz --exclude "CVS" "$(TARGET)-$(VERSION)"
rm -rf "$(TARGET)-$(VERSION)"
src-dist: clean
mkdir -p "$(TARGET)-$(VERSION)"
-cp -r $(SRC_ADD) "$(TARGET)-$(VERSION)"
tar -czf $(TARGET)-$(VERSION)-src.tar.gz --exclude "CVS" "$(TARGET)-$(VERSION)"
rm -rf "$(TARGET)-$(VERSION)"
$(APIDIR):
mkdir $(APIDIR)
$(BUILDDIR):
mkdir $(BUILDDIR)
$(METADIR):
mkdir $(METADIR)
rpm: src-dist
mkdir -p $(RPM_BASE)/SPECS $(RPM_BASE)/SOURCES $(RPM_BASE)/BUILD \
$(RPM_BASE)/SRPMS $(RPM_BASE)/RPMS
cp etc/libreadline-java.spec $(RPM_BASE)/SPECS
cp $(TARGET)-$(VERSION)-src.tar.gz $(RPM_BASE)/SOURCES
rpm --define _topdir$(RPM_BASE) -ba $(RPM_BASE)/SPECS/libreadline-java.spec
test: $(JAR) build-native
LD_LIBRARY_PATH=. java -jar $(JAR) src/test/tinputrc $(ARGS)
clean:
$(MAKE) -C src/native clean
-rm -fr `find . -name "*.o" -o -name "*~"` \
$(JAR) $(TARGET)-*.tar.*z* $(APIDIR) \
$(BUILDDIR) *.so .rltest_history
|