makefile‚Ģ¸‘‚«•ū # makefile(comment) AllFiles : execute.exe execute.exe : a.obj b.obj c.obj bcc32 -W a.obj b.obj c.obj a.obj : a.cpp a.h d.h bcc32 -c a.cpp b.obj : b.cpp b.h d.h bcc32 -c b.cpp c.obj : c.cpp c.h d.h bcc32 -c c.cpp