Skip to content

Commit

Permalink
chore(Makefile): Add Makefile to build MissingBlobs.jar
Browse files Browse the repository at this point in the history
Create a MANIFEST.MF as well.
  • Loading branch information
joshchoo committed Jan 26, 2019
1 parent ea71161 commit a329ef3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Main-Class: Main
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
default:
javac -d . src/*.java
jar cvmf META-INF/MANIFEST.MF MissingBlobs.jar *.class
rm *.class
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,9 @@ check whether any of these dependencies are not present.
- java compiler

### Building
In the source file directory, execute:
In the root directory of the repo, execute:
```
$ javac *.java
$ jar -cvfe MissingBlobs.jar MissingBlobs *.class
$ make
```

A runnable `MissingBlobs.jar` will be produced.
Expand Down

0 comments on commit a329ef3

Please sign in to comment.