added bin subdirectory

git-svn-id: https://svn.code.sf.net/p/jode/code/branches/stable@1058 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 25 years ago
parent f6f2987fad
commit d49e59a3ef
  1. 2
      jode/bin/.cvsignore
  2. 4
      jode/bin/Makefile.am
  3. 14
      jode/bin/jode.in

@ -0,0 +1,2 @@
Makefile
Makefile.in

@ -0,0 +1,4 @@
## Input file for automake to generate the Makefile.in used by configure
bin_SCRIPTS = jode

@ -0,0 +1,14 @@
#!@SHELL@
prefix=@prefix@
case $1 in
[Ss]wi*) CLAZZ=jode.swingui.Main; shift ;;
[Dd]ec*) CLAZZ=jode.Decompiler; shift ;;
[Oo]bf*) CLAZZ=jode.obfuscator.Main; shift ;;
*) CLAZZ=jode.Decompiler ;;
esac
CP=`echo $CLASSPATH | sed s/:/,/`
CLASSPATH=@datadir@/jode-@VERSION@.jar:@CLASSPATH@ \
@JAVA@ $CLAZZ --classpath $CP $*
Loading…
Cancel
Save