123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- include ../../config/.config
- include ../../config/makefile.conf
- include ../../config/makefile.java.conf
- all : sample
- JAR=../../$(STAGE)/axtls.jar
- CLASSES=../../bindings/java/classes
- sample : $(JAR)
- $(JAR) : $(CLASSES)/axssl.class $(wildcard $(CLASSES)/axTLSj/*.class)
- jar mcvf manifest.mf $@ -C $(CLASSES) axTLSj -C $(CLASSES) axssl.class
- JAVA_FILES=axssl.java
- JAVA_CLASSES:=$(JAVA_FILES:%.java=$(CLASSES)/axTLSj/%.class)
- $(CLASSES)/%.class : %.java
- javac -d $(CLASSES) -classpath $(CLASSES) $^
- clean::
- -@rm -f $(TARGET)
|