Hello,
This is a cross-post from the Java Sun forums..
Jive Software
The reason why I am posting here is because I am a bit pass the deadline and am still having trouble creating this makefile.. I am seeking additional help..
Here is the situation..
I used Netbeans on a Windows platform to create my program. Everything is finished and works perfectly, but my professor denied my submission of the assignment because he wants the program in a makefile. I have never worked with makefiles nor have I ever worked on Linux. I have been looking on google a lot and trying lots of different techniques to create makefiles but to no success. I have gone as far downloading on Linux the Java SDK and have learned to use Javac Main.java etc. etc.
but that is as far as I go without going more into depth on how to compile multiple files at once. Would someone mind walking me through on how to create the necessary makefile?
I have five classes: Main.java, Course.java, Rooms.java, CSVReader.java, CSVParser.java
CSVParser.java and CSVReader.java are classes I pulled from the internet, it is an opensource CSV reader..
I have put all of the .java files into the same directory, and have navigated through the terminal to the correct folder where all of these files are located.
But I constantly keep receiving errors that either Rooms symbol cannot be found or Courses symbol cannot be found..
One issue where I might be running into but I am not exactly sure.. is that I have in my Rooms class referenced to the Course class and the Course class has references to the Rooms class..
Somebody please help!

