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
相關文章
相關標籤/搜索