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

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

Import all tags

File size: 1.0 KB
Line 
1
2#====================================
3#  ${TITLE} ${CONSTITUENT}
4#
5#   Generated ${DATE}  by ${USER}
6#
7#====================================
8
9!include $(CMTROOT)/src/NMakefile.core
10
11!if defined (tag)
12CMTEXTRATAGS = $(tag)
13!else
14!if defined (CMTCONFIG)
15tag = $(CMTCONFIG)
16!else
17tag = VisualC
18!endif
19!endif
20
21cmt_${CONSTITUENT}_$(HASTARGETTAG) = 1
22
23#--------------------------------------------------------
24
25!if defined (cmt_${CONSTITUENT}_has_target_tag)
26
27tags      = $(tag),$(CMTEXTRATAGS),target_${CONSTITUENT}
28
29${PACKAGE}_tag = $(tag)
30
31cmt_local_tagfile = $(${PACKAGE}_tag)_${CONSTITUENT}.nmake
32
33!else
34
35tags      = $(tag),$(CMTEXTRATAGS)
36
37${PACKAGE}_tag = $(tag)
38
39cmt_local_tagfile = $(${PACKAGE}_tag).nmake
40
41!endif
42
43!include $(cmt_local_tagfile)
44
45${CONSTITUENT} ::
46
47javadirs ::
48        @if not exist $(javabin) mkdir $(javabin)
49
50srcdirs ::
51        @if not exist $(src) mkdir $(src)
52
53dirs ::
54        @if not exist requirements echo "No requirements file"
55        @if not exist $(bin) mkdir $(bin)
56
57help ::
58        @echo '${CONSTITUENT}'
Note: See TracBrowser for help on using the repository browser.