I have classic IntelliJ IDEA project (no maven or gradle). I want to transform this project to Makefile project.
For example, I have console application without some frameworks. This application consists of Main.java, Class1.java and Class2.java
. The source files are in src/com/site/
folder.
I want to write make
in terminal and get Main.jar
. Of course, I don't want to create Makefile manually.