source: CMT/HEAD/mgr/fragments/nmake/cmt_action_runner_header @ 346

Last change on this file since 346 was 337, checked in by garonne, 18 years ago

correct cmt_action_runner_header

  • Property svn:eol-style set to native
File size: 683 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}_dependencies)
15$(${CONSTITUENT}actionstamp) ::
16        $(silent) ${action_value}
17        @echo ok > $(${CONSTITUENT}actionstamp)
18
19${CONSTITUENT}clean ::
20        @if exist $(${CONSTITUENT}actionstamp) del $(${CONSTITUENT}actionstamp)
21
22!else
23
24#-- $(${CONSTITUENT}_dependencies) --
25${CONSTITUENT} ::
26        $(silent) ${action_value}
27
28!endif
29
30install ::
31uninstall ::
32
33#-- end of cmt_action_runner_header -----------------
Note: See TracBrowser for help on using the repository browser.