source: CMT/v1r14p20031120/fragments/nmake/constituent @ 1

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

Import all tags

File size: 1.8 KB
Line 
1
2$(bin)${CONSTITUENT}.nmake :: dirs
3        @echo (constituents.nmake) Building ${CONSTITUENT}.nmake
4        @set include=$(include)
5        @set lib=$(lib)
6        @$(cmtexe) build -nmake constituent_makefile ${CONSTITUENT} -tag=$(tags)
7        @move ${CONSTITUENT}.nmake $(bin)
8        @echo (constituents.nmake) ${CONSTITUENT}.nmake done
9
10${CONSTITUENT} :: $(${CONSTITUENT}_dependencies) $(bin)${CONSTITUENT}.nmake
11        @echo (constituents.nmake) Starting ${CONSTITUENT}
12        @set include=$(include)
13        @set lib=$(lib)
14        @$(MAKE) /nologo /f $(bin)${CONSTITUENT}.nmake $(MAKEFLAGS) build_strategy=keep_makefiles ${CONSTITUENT} tag=$(tags)
15        @echo (constituents.nmake) ${CONSTITUENT} done
16
17clean :: ${CONSTITUENT}clean
18
19${CONSTITUENT}clean :: $(${CONSTITUENT}clean_dependencies) $(bin)${CONSTITUENT}.nmake
20        @echo (constituents.nmake) Starting ${CONSTITUENT}clean
21        @set include=$(include)
22        @set lib=$(lib)
23        @$(MAKE) /nologo /f $(bin)${CONSTITUENT}.nmake $(MAKEFLAGS) build_strategy=keep_makefiles ${CONSTITUENT}clean tag=$(tags)
24        @echo (constituents.nmake) ${CONSTITUENT}clean done
25
26install :: ${CONSTITUENT}install
27
28${CONSTITUENT}install :: $(${CONSTITUENT}_dependencies) $(bin)${CONSTITUENT}.nmake
29        @echo (constituents.nmake) Starting install ${CONSTITUENT}
30        @set include=$(include)
31        @set lib=$(lib)
32        @$(MAKE) /nologo /f $(bin)${CONSTITUENT}.nmake $(MAKEFLAGS) build_strategy=keep_makefiles install tag=$(tags)
33        @echo (constituents.nmake) install ${CONSTITUENT} done
34
35uninstall :: ${CONSTITUENT}uninstall
36
37${CONSTITUENT}uninstall :: $(bin)${CONSTITUENT}.nmake
38        @echo (constituents.nmake) Starting uninstall ${CONSTITUENT}"
39        @set include=$(include)
40        @set lib=$(lib)
41        @$(MAKE) /nologo /f $(bin)${CONSTITUENT}.nmake $(MAKEFLAGS) build_strategy=keep_makefiles uninstall tag=$(tags)
42        @echo (constituents.nmake) uninstall ${CONSTITUENT} done
43
Note: See TracBrowser for help on using the repository browser.