Reputation: 4053
The "Default" section in EDE's customization buffer is kinda confusing. There are some sections in there whose uses I can't understand.
Upvotes: 0
Views: 136
Reputation: 3949
Many options in the EDE Make project type are specific to managing Makefiles.
An inference rule in Make might be something like this:
%.o: %.cpp
@echo '$(CXX_COMPILE) -c $<'; \
$(CXX_COMPILE) $(CXX_DEPENDENCIES) -o $@ -c $<
which says that if some dependency foo.o is desired, it matches %.o
, and will see if there is a foo.cpp
, and if so, run those commands.
That slot lets you write your own if your files types aren't supported directly.
The include file allows you to write you won makefile include. You might call it pickle.mk
, and if you make that an include, you will find:
include pickle.mk
in your generated makefiles.
Automatic dependencies are for languages supported by gcc, and it will create a dependency file, which is basically a makefile that says foo.cpp depends on misc header files included within it. It will make your builds more accurate.
Upvotes: 1