Skip to content

Commit a329ef3

Browse files
committed
chore(Makefile): Add Makefile to build MissingBlobs.jar
Create a MANIFEST.MF as well.
1 parent ea71161 commit a329ef3

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

META-INF/MANIFEST.MF

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Main-Class: Main

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
default:
2+
javac -d . src/*.java
3+
jar cvmf META-INF/MANIFEST.MF MissingBlobs.jar *.class
4+
rm *.class

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,9 @@ check whether any of these dependencies are not present.
4545
- java compiler
4646

4747
### Building
48-
In the source file directory, execute:
48+
In the root directory of the repo, execute:
4949
```
50-
$ javac *.java
51-
$ jar -cvfe MissingBlobs.jar MissingBlobs *.class
50+
$ make
5251
```
5352

5453
A runnable `MissingBlobs.jar` will be produced.

0 commit comments

Comments
 (0)