update dev300-m58
[ooovba.git] / dmake / msdos / rmprq.c
bloba5200de43ce2a6f9a63946cb49b429f294ff7357
1 /* RCS $Id: rmprq.c,v 1.2 2008-03-05 18:35:28 kz Exp $
2 --
3 -- SYNOPSIS
4 -- Remove prerequisites code.
5 --
6 -- DESCRIPTION
7 -- This code is different for DOS and for UNIX and parallel make
8 -- architectures since the parallel case requires the rm's to be
9 -- run in parallel, whereas DOS guarantees to run them sequentially.
10 --
11 -- AUTHOR
12 -- Dennis Vadura, dvadura@dmake.wticorp.com
14 -- WWW
15 -- http://dmake.wticorp.com/
17 -- COPYRIGHT
18 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
19 --
20 -- This program is NOT free software; you can redistribute it and/or
21 -- modify it under the terms of the Software License Agreement Provided
22 -- in the file <distribution-root>/readme/license.txt.
24 -- LOG
25 -- Use cvs log to obtain detailed change logs.
28 #if defined(USE_CREATEPROCESS)
29 /* MSVC6.0 and newer and MinGW use the parallel build enabled runargv(). */
30 Force a compile-time blowup.
31 This file should not be used, use unix/rmprq.c instead.
32 #endif
34 #include "extern.h"
36 PUBLIC void
37 Remove_prq( tcp )
38 CELLPTR tcp;
40 tcp->ce_flag &= ~(F_MADE|F_VISITED);
41 tcp->ce_time = 0L;
43 Make( tcp, tcp );