CompSci:Java Makefiles are really confusing.

  • Comp Sci
  • Thread starter gottfried
  • Start date
  • Tags
    Confusing
In summary, Java Makefiles can be confusing for beginners due to their detailed syntax and the need for a good understanding of Java and the command line. To make them easier to understand, you can break them down into smaller parts and use resources like tutorials and documentation. While not necessary, Makefiles can help automate the build process and manage dependencies. Common mistakes when working with Java Makefiles include incorrect syntax and missing dependencies. There are also alternatives to using Makefiles, such as build tools like Maven and IDEs like Eclipse and IntelliJ.
  • #1
gottfried
119
0
For my Computer Science assignment I have to hand in a makefile along with my java code. Given that I've got my code complete in Netbeans how do I make a makefile? Also what is a makefile and what is itmeant to do?
 
Physics news on Phys.org
  • #2
Makefiles - There is a Java example at the end.
 
  • #3
Thanks
 

1. Why are Java Makefiles confusing?

Java Makefiles can be confusing because they involve a lot of details and syntax that may not be familiar to beginners. They also require a good understanding of the Java language and the command line, which can be overwhelming at first.

2. How can I make Java Makefiles easier to understand?

One way to make Java Makefiles easier to understand is to break them down into smaller, more manageable parts. You can also try using tools and resources such as tutorials, online forums, and documentation to help you understand the concepts and syntax used in Makefiles.

3. Do I need to use Java Makefiles to compile my Java code?

No, you do not necessarily need to use Java Makefiles to compile your Java code. You can use other build tools such as Maven or Gradle, or you can manually compile your code using the command line. However, Makefiles can be useful for automating the build process and managing dependencies.

4. What are some common mistakes when working with Java Makefiles?

Some common mistakes when working with Java Makefiles include incorrect syntax, missing dependencies, and not properly specifying the correct paths for your code and libraries. It is important to carefully review and test your Makefile to avoid these mistakes.

5. Are there any alternatives to using Java Makefiles?

Yes, there are several alternatives to using Java Makefiles for building and managing Java projects. Some popular options include build tools like Maven and Gradle, IDEs such as Eclipse and IntelliJ, and even simpler command line tools like javac and jar. It ultimately depends on your personal preference and the needs of your project.

Similar threads

  • Programming and Computer Science
Replies
12
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
3
Views
503
  • Programming and Computer Science
Replies
34
Views
3K
  • Engineering and Comp Sci Homework Help
Replies
3
Views
806
  • Engineering and Comp Sci Homework Help
Replies
3
Views
665
  • Engineering and Comp Sci Homework Help
Replies
10
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
15
Views
1K
  • Programming and Computer Science
Replies
4
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
3
Views
999
  • Programming and Computer Science
Replies
1
Views
3K
Back
Top