使用make文件创建目录
我是makefile的新手,我想使用makefile创建目录。我的项目目录是这样的 +--Project +--output +--source +Testfile.cpp +Makefile 我想将所有对象放到各自的输出文件夹中。我想在编译后创建像这样的文件夹结构。 +--Project +--output +--debug (or release) +--objs +Testfile.o +Testfile (my executable file) +--source +Testfile.cpp +Makefile 我尝试了几种选择,但未能成功。请帮助我使用make文件创建目录。我正在发布我的Makefile供您考虑。 #--------------------------------------------------------------------- # Input dirs, names, files #--------------------------------------------------------------------- OUTPUT_ROOT := output/ TITLE_NAME := TestProj ifdef DEBUG TITLE_NAME += _DEBUG else ifdef RELEASE TITLE_NAME += _RELEASE endif endif # Include …