how can I make jar for my java files in linux?
I have this situation:
I have in directory src this stuff:
Client.java //source code
GUI.java // source code
miglayout-lib.jar //external lib
icons // folder in which are 20 jpeg pictures
when I want to compile it I use
javac -cp "miglayout-lib.jar:." *.java
when I want to run it I use
java -cp "miglayout.jar:." Klient
//cause Klient is class with main.
How can I make some build file or script (something like make) which will make me one jar file with my application and I'will be able to run it?
Thx.