![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Make utility - some Qs togurus.. | alex_5161 | SUN Solaris | 0 | 01-30-2007 12:17 PM |
| is there kind of good utility that convert make files to dsp? | umen | UNIX for Dummies Questions & Answers | 1 | 10-04-2006 08:09 PM |
| Make utility | bigmoon | SUN Solaris | 2 | 10-10-2005 09:48 PM |
| MAKE utility | victorvvk | High Level Programming | 4 | 06-30-2005 10:23 AM |
| Using make utility to create an mini-app | Yifan_Guo | High Level Programming | 1 | 03-19-2005 05:35 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
When we run the make utility , make compiles only those files which are undergone changes(other files which have not undergone any changes are not recompiled)
The Following quotes says HTML Code:
When you run the make utility, it examines the modification times of files and determines what needs to be regenerated. Files that are older than the files they depend on must be regenerated. Regenerating one file may cause others to become old, so that several files end up being regenerated. 2) What does it mean Modification times of files 3) what does it consider or look for before creating an object file I would like to know about some things which make utility does in the background before creating the object files Regards Victor Vinod Kumar |
|
||||
|
files have modification times. make looks at those and decides what has to be updated.
modification means the file was saved to disk (possibly changed) at that time. mkae has some rules of thumb about how it decides to go about keeping things up-to-date. For example, since it knows that object.o requires three source files in order to compile, it checks the modifcation times of each source file. If any of the source files is newer than the object.o file, it rebuilds object.o If any file uses object.o (now it is newer than it was a minute ago) those files are rebuilt as well. |
|
||||
|
Make utiltity
Thanks for the reply
Keeping this in view , what are the advantages and disadvantages of make One of my colleague was saying that the clear make has some more advantage than GNU make. He was saying that GNUmake is not an intelligent tool whereas Clearcase make is intelligent tool. how is it intelligent and in what ways is it intellegent Thanks and Regards Victor vinod kumar |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|