An existing Java project uses makefiles (which in turn uses ANT).
I want to work on this project using IntelliJ IDEA. However, no IntelliJ specific files, e.g. project files, should be checked in to version control.
How can I configure the project so that:
- Makefiles can be run from inside IntelliJ IDEA.
- Change
Build > Make Project
so that it either does nothing or runs some make target (in a makefile). I do not want to the standard behavior of compiling into./bin
since this potentially can conflict with the makefiles.