source: CMT/v1r18p20041201/mgr/fragments/nmake/cmt_action_runner_header @ 1

Last change on this file since 1 was 1, checked in by arnault, 19 years ago

Import all tags

File size: 673 bytes
Line 
1#-- start of cmt_action_runner_header ---------------
2
3!if defined (ONCE)
4${CONSTITUENT}_once = 1
5!endif
6
7!if defined (${CONSTITUENT}_once)
8
9${CONSTITUENT}actionstamp = ${CONSTITUENT}.actionstamp
10
11${CONSTITUENT} :: $(${CONSTITUENT}actionstamp)
12        @echo ${CONSTITUENT} ok
13
14$(${CONSTITUENT}actionstamp) :: $(${CONSTITUENT}_dependencies)
15        $(silent) ${action_value}
16        @echo ok > $(${CONSTITUENT}actionstamp)
17
18${CONSTITUENT}clean ::
19        @if exist $(${CONSTITUENT}actionstamp) del $(${CONSTITUENT}actionstamp)
20
21!else
22
23${CONSTITUENT} :: $(${CONSTITUENT}_dependencies)
24        $(silent) ${action_value}
25
26!endif
27
28#-- end of cmt_action_runner_header -----------------
Note: See TracBrowser for help on using the repository browser.