我有一个情况,我有三个非常大的文件 A.cpp B.cpp C.cpp n.cpp
我不想编译这些文件,每次我运行程序时,
任何想法什么是从编译中排除这些文件的最佳方法。
每次运行程序时,程序都不会被编译。编译是一次过程,如果您在编译时静态链接,则链接是一次。另一种是在运行时链接(动态链接)。
在任何一种情况下,如果源文件没有更改,那么代码也将被编译一次,然后如果您使用 make 文件,则会进行编译。
make clean; #if you execute this command before make all or make build, then all the .cpp files will be compiled
here clean, all, build are the target of the make file.
参考链接制作