So I have a directory of with a bunch of sub-directories that contain .java and .form files. How do I build this program? I'm sure that the program is build-able too, so I must be doing something wrong.
I'm used to writing C/C++ programs where I can just pass -I/path to gcc.
By the way, I'm using netbeans on an Ubuntu system.
Here's the output of tree:
.
|-- SimpleServerWithGUI
|-- SweepCollector
| |-- Collector.form
| |-- Collector.java
| `-- sweepParser.java
|-- aGrapher
|-- basefunctionsModule
| |-- basefunctionsModule.class
| |-- basefunctionsModule.java
| |-- getAction.class
| `-- getAction.java
|-- n1996aModule
| |-- Connection.class
| |-- Connection.java
| |-- N1996a.class
| |-- N1996a.java
| `-- n1996sweep.class
|-- newSquirrelSweepManager
|-- old
|-- squirrel
| |-- Main.class
| |-- Main.java
| |-- actionList.class
| |-- actionList.java
| |-- commandparser.class
| |-- commandparser.java
| |-- squirrelAction.class
| |-- squirrelAction.java
| |-- squirrelLogger.class
| |-- squirrelLogger.java
| |-- squirrelModule.class
| |-- squirrelModule.java
| |-- variableList.class
| `-- variableList.java
|-- squirrelClient
| |-- squirrelConnection.java
| `-- squirrelConnectionResult.java
|-- squirrelSweepManager
| |-- BandView.form
| |-- BandView.java
| |-- DataAquisitionThread.java
| |-- DataView.form
| |-- DataView.java
| |-- PresetView.form
| |-- PresetView.java
| |-- SweepManager.form
| |-- SweepManager.java
| |-- SweepManagerSimpleGUI.java
| `-- sweep.txt
`-- squirrelSweepManagerDataModel
|-- SweepBand.java
|-- SweepData.java
|-- SweepParameters.java
|-- simpleSweep.java
|-- sweep.java
`-- sweepResult.java
11 directories, 45 files
SO now I'm at the point where I have a bunch of class files, like Main.class, how do I actually make an executable file?