Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
First release
  • Loading branch information
redcrab2016 authored Mar 2, 2018
1 parent c2b4b18 commit c039256
Show file tree
Hide file tree
Showing 14 changed files with 4,564 additions and 0 deletions.
Binary file added bf.jar
Binary file not shown.
18 changes: 18 additions & 0 deletions bf.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project BF">
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
<!--ANT 1.7 is required -->
<!--define folder properties-->
<property name="dir.buildfile" value="."/>
<property name="dir.workspace" value="${dir.buildfile}/.."/>
<property name="dir.jarfile" value="${dir.buildfile}"/>
<target name="create_run_jar">
<jar destfile="${dir.jarfile}/bf.jar" filesetmanifest="mergewithoutmain">
<manifest>
<attribute name="Main-Class" value="dvx.lang.brainfuck.Main"/>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="${dir.jarfile}/bin"/>
</jar>
</target>
</project>
Loading

0 comments on commit c039256

Please sign in to comment.