[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: How to let Make run for specific time stamp?
From: |
Greg Chicares |
Subject: |
Re: How to let Make run for specific time stamp? |
Date: |
Thu, 19 Jan 2006 19:13:46 +0000 |
User-agent: |
Mozilla Thunderbird 1.0.2 (Windows/20050317) |
On 2006-1-19 0:33 UTC, Yu Hou wrote:
>
> If I have a project which contains several files, each
> file have several version, managed by CVS. Can I set a
> time stamp like "Dec 30, 2005", then ask Make to just
> compile the files with time stamps EARLIER than Dec
> 30, 2005 which I specified and does not compile the
> newer version? How to achive this goal?
I would check out the sources as of a particular date
cvs -z3 checkout -D "2005-12-30" your_module
into a new directory, then run 'make' there.