Windows 下使用makefile

写了一个简单的demo,测试使用: // main.cpp #include <iostream> using namespace std; int main() { cout << "Hello world" << endl; return 0; } // Makefile target = test.exe srcs = main.cpp $(target) : $(srcs) cl
相关文章
相关标签/搜索