Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
典型的な C プログラムでは、いくつかのコンポーネントに分解します。
// main.c #include 'part-a.h' #include 'part-b.h' main () { // ... } // part-a.h #include 'part-c.h' // ...
すべての依存関係 (標準ライブラリを除く) を再帰的に含む 1 つのファイルとしてプロジェクト全体をエクスポートしたいのですが、どうすればそれを行うことができgccますか?
gcc