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

Last change on this file since 595 was 487, checked in by rybkin, 15 years ago

See C.L. 382

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