forked from I2P_Developers/i2p.i2p
Corrected Makefile:
- removed relative path for jython.jar, replaced with a def which developer must edit Added README - overviews the i2psam.jar building process Added build.bat - an attempt at a build script which might work on Windows, for people who don't have 'make' installed
This commit is contained in:
@@ -3,6 +3,9 @@
|
||||
# by default, it gets linked into a standalone .jar file, together
|
||||
# with the I2P core classes, and the jython classes
|
||||
|
||||
# set this to wherever your jython.jar lives
|
||||
JYTHONJAR=/usr/share/jython/jython.jar
|
||||
|
||||
# sources
|
||||
JYTHON_SOURCES=../src/i2psam.py
|
||||
|
||||
@@ -10,7 +13,7 @@ JYTHON_SOURCES=../src/i2psam.py
|
||||
JYTHON_COMPILE=jython
|
||||
|
||||
# change this to wherever you put your i2p jars
|
||||
CLASSPATH=../../../../build/i2p.jar:../../../../build/mstreaming.jar:../../../jython/lib/jython.jar
|
||||
CLASSPATH=../../../../build/i2p.jar:../../../../build/mstreaming.jar:$(JYTHONJAR)
|
||||
|
||||
# comment this out to prevent the kitchen sink (i2p code, jython code etc)
|
||||
# from being linked into jar. Uncomment it to create a standalone .jar
|
||||
@@ -29,3 +32,4 @@ i2psam.jar: $(JYTHON_SOURCES) Makefile
|
||||
$(JARLINKOPTIONS) \
|
||||
$(EXTRAPACKAGES) \
|
||||
$(JYTHON_SOURCES)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user