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
|
From: Jochen Sprickerhof <git@jochen.sprickerhof.de>
Date: Mon, 30 Apr 2018 19:07:53 +0200
Subject: Don't support chipcards for now
---
build.xml | 37 -------------------------------------
1 file changed, 37 deletions(-)
delete mode 100644 build.xml
diff --git a/build.xml b/build.xml
deleted file mode 100644
index eb67a9c..0000000
--- a/build.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<?xml version="1.0"?>
-
-<project name="hbci4java" default="compile">
- <property name="make" value="/usr/bin/make" />
- <property name="chipcard" value="chipcard" />
-
- <property name="classes" value="target/classes" />
- <property name="dist" value="dist" />
-
- <target name="compile">
- <javah class="org.kapott.hbci.passport.HBCIPassportDDV" outputFile="${chipcard}/src/include/frontend.h" classpath="${classes}" />
- <exec executable="${make}" os="Linux">
- <arg line="-C ${chipcard}" />
- </exec>
- </target>
-
- <target name="dist">
- <mkdir dir="${dist}/lib" />
- <copy todir="${dist}/lib">
- <fileset dir="${chipcard}/lib">
- <exclude name=".dummy" />
- </fileset>
- </copy>
- <chmod perm="0755">
- <fileset dir="${dist}/lib">
- <include name="lib*.so" />
- </fileset>
- </chmod>
- </target>
-
- <target name="clean">
- <exec executable="${make}" os="Linux">
- <arg line="-C ${chipcard} clean" />
- </exec>
- <delete file="${chipcard}/src/include/frontend.h" />
- </target>
-</project>
|